본문 바로가기

알고리즘11

프로그래머스 - 기능 개발 문제 설명 프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는 기능보다 먼저 개발될 수 있고, 이때 뒤에 있는 기능은 앞에 있는 기능이 배포될 때 함께 배포됩니다. 먼저 배포되어야 하는 순서대로 작업의 진도가 적힌 정수 배열 progresses와 각 작업의 개발 속도가 적힌 정수 배열 speeds가 주어질 때 각 배포마다 몇 개의 기능이 배포되는지를 return 하도록 solution 함수를 완성하세요. 제한 사항 작업의 개수(progresses, speeds배열의 길이)는 100개 이하입니다. 작업 진도는 100 미만의 자연수입니다. 작업 속도는 100 이하의 자.. 2020. 8. 10.
leet code 20 -Valid Parentheses Valid Parentheses 괄호를 검사하는 문제이다. function isValid(s) { const splitStr = s.split(''); if (splitStr[0] === ')' || splitStr[0] === '}' || splitStr[0] === ']') { return false; } const stack = []; for (const s of splitStr) { if (s === '(') stack.push(')'); else if (s === '[') stack.push(']'); else if (s === '{') stack.push('}'); else if (stack.pop() !== s) return false; } return stack.length === 0 ? .. 2020. 8. 5.
leetcode- 155 Min stack leetcode Min stack을 풀었다. stack 을 구현하는 문제였다. 답은 이렇다. class MinStack { arr: any[]; constructor() { this.arr = []; } push(x: number): void { this.arr.push(x); } pop(): void { this.arr.pop(); } top(): number { return this.arr[this.arr.length - 1]; } getMin(): number { return this.arr.reduce((prev, cur) => prev > cur ? cur : prev) } } 특이사항은 최소 값을 구하는 getMin 함수를 구현하는 것이었다. reduce를 써서 최소 값을 구한다. 2020. 8. 3.
Leetcode - 121. Best Time to Buy and Sell Stock 리트코드 Best time to buy and sell stock 문제를 풀었다. Example 1: Input: [7,1,5,3,6,4] Output: 5 Explanation: Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit = 6-1 = 5. Not 7-1 = 6, as selling price needs to be larger than buying price. Example 2: Input: [7,6,4,3,1] Output: 0 Explanation: In this case, no transaction is done, i.e. max profit = 0. 배열을 입력으로 받고 언제 사서 언제 팔면 이익이 가장 클지 계산하는 문제다... 2020. 8. 3.
Leetcode - 121. Best Time to Buy and Sell Stock 리트코드 Best time to buy and sell stock 문제를 풀었다. Example 1: Input: [7,1,5,3,6,4] Output: 5 Explanation: Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit = 6-1 = 5. Not 7-1 = 6, as selling price needs to be larger than buying price. Example 2: Input: [7,6,4,3,1] Output: 0 Explanation: In this case, no transaction is done, i.e. max profit = 0. 배열을 입력으로 받고 언제 사서 언제 팔면 이익이 가장 클지 계산하는 문제다... 2020. 7. 31.