[MAC] anaconda3 No action taken 아나콘다를 정상적으로 설치 후에 conda 명령어로 설치를 확인한 상태에서 가상 환경을 설정하기 위해 생성 후에 conda init을 할 때 "No action taken" 문구를 노출하면서 명령어가 실행되지 않았습니다. 해결방법 source ~/.bash_profile 또는 source ~/.bashrc 둘 중 동작하는 명령어를 실행하면 conda init 상태가 됩니다. (initialize 가 필요하기 때문) ETC/MAC 2022.07.14
[MAC] zsh : command not found : conda MAC에 아나콘다를 설치하고 설치 여부 확인을 하기 위해 명령어를 작성하였으나 zsh : command not found : conda라는 문구를 출력하였다. 해결하기 위한 방법으로 환경 변수에 추가해주는 방법이 있어 찾아 추가해봤다. # 1. 환경 변수에 추가 vi ~/.zshrc # 2. 환경변수 추가 하고 저장 export PATH ="opt/anaconda3/bin:$PATH" # 3. 설정파일 빌드하여 반영 source ~/.zshrc # 4. conda 설치 확인 conda # 대부분 해결되지만, 본인은 동일한 에러 문구가 노출되었고 환경 변수 문제가 맞다고 판단되어 경로 확인해보니 # 위에 환경변수 추가하는 2번에서 경로를 아래와 같이 설정하여 해결 export PATH ="/Users/{사.. ETC/MAC 2022.07.13
[Leetcode] 22. Container With Most Water You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]). Find two lines that together with the x-axis form a container, such that the container contains the most water. Return the maximum amount of water a container can store. Notice that you may not slant the container. Example 1: Input: height.. ETC/Algorithm 2022.01.27
[LeetCode] 152. Maximum Product Subarray class Solution { public int maxProduct(int[] nums) { int numsLength = nums.length; int max = nums[0]; int min = nums[0]; int result = nums[0]; for(int idx = 1; idx < numsLength; idx++){ max = Math.max(nums[idx], Math.max(max*nums[idx], min*nums[idx])); min = Math.min(nums[idx], Math.min(max*nums[idx], min*nums[idx])); result = Math.max(result, Math.max(max, min)); } return result; } } Maximum P.. ETC/Algorithm 2022.01.03
[Eclipse] log cannot be resovled 에러 해결 법 원인 1. dependency 중 lombok 설치가 제대로 안되었을 때 2. lombok 이 설치되어 있으나 실행 한 이클립스에 설치가 안되었을 때 (eclipse를 2개 이상 사용할 경우) 해결 방법 1. 이클립스 프로젝트 내에 Maven Dependencies 에서 설치한 lombok-X.XX.XX.jar를 찾는다. 2. 찾은 lombok-X.XX.XX.jar 우클릭 > Run as > Java Application > 실행 3. lombok 파일이 실행되면 specify location 을 클릭하고 실행한 이클립스 경로의 eclipse.ini 파일을 클릭 4. update/install 클릭 5. 이클립스에서 프로젝트 클릭 후 Maven update (Alt + F5) 및 project Clean.. ETC/Tools 2022.01.03
[LeetCode] 53. Maximum Subarray Maximum Subarray - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. A subarray is a contiguous part of an array. Example 1: Input: nums = [-2,1,-3.. ETC/Algorithm 2021.12.30
[IntelliJ & MAC] IntelliJ Find Action 단축키 오동작 MAC에서 IntelliJ 를 사용 할 때 Find Action 단축키 (command + Shift + A)를 자주 사용하는데 어느 순간 당황스럽게 터미널 화면이 나온다. 원인 : MAC 단축키와 겹쳐서!!! 해결방법! 시스템 환경 설정 > 서비스 > 단축키 > 터미널에서 man 페이지 인덱스 검색 체크 해제 ETC/Tools 2021.12.27
[LeetCode] 238. Product of Array Except Self Product of Array Except Self - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i]. The product of any prefix or suffix of nums is guaranteed.. ETC/Algorithm 2021.12.14
[Leetcode] Contains Duplicate 문제 설명 Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct. Example 1: Input: nums = [1,2,3,1] Output: true Example 2: Input: nums = [1,2,3,4] Output: false Example 3: Input: nums = [1,1,1,3,3,4,3,2,4,2] Output: true Constraints: 1 ETC/Algorithm 2021.12.09
[Eclipse] Eclipse 빌드 속도 개선 & Tomcat 실행 속도 개선 Eclipse 최적화 방법 1. Validation 해제 1-1) Windows > Preference > Validation > suspend all validators 체크 해제 > JavaScript Validation 체크 해제 > Apply and close Tomcat 실행 속도 개선 1. Servers > config 수정 1-1) config > Context.xml 파일 수정 - Context 수정 ... ... 1-2) config > catalina.properties 파일 수정 AS-IS : tomcat.util.scan.StandardJarScanFilter.jarsToSkip= ... TO-BE : tomcat.util.scan.StandardJarScanFilter.jarsTo.. ETC/Tools 2021.12.07