전체 글 썸네일형 리스트형 [NestJS] 설치 방법, 개발 환경(nvm, nodejs, npm) 세팅 (MAC) MAC M1 기준으로 설명된 글 입니다. NestJS는 Node.js 기반으로 일단 node.js 설치가 필요 node.js를 쓰려면 nvm을 사용하는 것이 좋음 nvm 이란 Node Version Manager라는 말 그대로 Node.js의 버전을 관리해주는 프로그램 개발자가 한 계정에 여러 버전의 Nodejs을 설치하고 원하는 버전을 선택하여 사용할 수 있음 homebrew로 nvm 설치 brew install nvm nvm 설치 확인 nvm -v 0.39.3 node.js LTS 버전 설치(2023.03.20 기준 v18.15.0) nvm install v18.15.0 nvm use v18.15.0 nodejs, npm 설치 확인 node -v v18.15.0 npm -v 9.5.0 npm으로 ne.. 더보기 [LeetCode] 58. Length of Last Word https://leetcode.com/problems/length-of-last-word/ Length of Last Word - LeetCode Length of Last Word - Given a string s consisting of words and spaces, return the length of the last word in the string. A word is a maximal substring consisting of non-space characters only. Example 1: Input: s = "Hello World" Output: 5 Explanation: Th leetcode.com string에서 last word의 길이를 구하는 문제 space 처리를 하는 문제로 매.. 더보기 35. Search Insert Position https://leetcode.com/problems/search-insert-position/description/ Search Insert Position - LeetCode Search Insert Position - Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You must write an algorithm with O(log n) runtime com leetcode.com sorted array에 주어진 하나의 숫자를 정확한 .. 더보기 [LeetCode] 27. Remove Element https://leetcode.com/problems/remove-element/ Remove Element - LeetCode Remove Element - Given an integer array nums and an integer val, remove all occurrences of val in nums in-place [https://en.wikipedia.org/wiki/In-place_algorithm]. The relative order of the elements may be changed. Since it is impossible to change the leng leetcode.com array에서 특정 값을 삭제하는데 in-place 방식(extra datastructre를 사용하지.. 더보기 '가처분소득'이란? 정의 국민소득 통계상의 용어로 개인소득 중 소비 ·저축을 자유롭게 할 수 있는 소득. 해석 소득에서 세금 세외부담 이자지급 등을 제외하고 개인이 마음대로 할 수 있는 소득이다. 예를들어 가계 부채가 높고 금리가 올라가는 2022년 후반기에는 가처분 소득이 줄어드는 상황이라고 볼 수 있다. 더보기 [LeetCode] 88. Merge Sorted Array https://leetcode.com/problems/merge-sorted-array/?envType=study-plan&id=data-structure-i Merge Sorted Array - 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 두 개의 오름차순 정렬된 list를 merge하는 문제 nums1의 길이가 m, nums2의 길이가 n 시간복잡도를 O(m+n)으로 만든는 것이 최적 솔루션 하지만 나 프로개발자 코드 생산성을 최대로 하는 O( (m+n)l.. 더보기 [LeeCode] 53. Maximum Subarray 목표없이 풀다보니 의지가 약해지는 것 같아 'data structure'로 묶인 문제를 풀기로 결정. https://leetcode.com/study-plan/data-structure/?progress=x0f8sqb1 Data Structure - Study Plan - LeetCode In computer science, a data structure is a way to store and organize data. During the computer programming process, identifying and using the appropriate data structure is an important task as it can improve the overall efficiency of th.. 더보기 [LeetCode] 217. Contains Duplicate 목표없이 풀다보니 의지가 약해지는 것 같아 'data structure'로 묶인 문제를 풀기로 결정. https://leetcode.com/study-plan/data-structure/?progress=x0f8sqb1 Data Structure - Study Plan - LeetCode In computer science, a data structure is a way to store and organize data. During the computer programming process, identifying and using the appropriate data structure is an important task as it can improve the overall efficiency of th.. 더보기 이전 1 2 3 4 5 6 ··· 18 다음