반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 수학
- 문자열
- 타입스크립트
- dfs
- 그래프
- Nestjs
- ip
- Algorithm
- 프로그래머스 레벨 2
- Node.js
- 소켓
- 백준
- 가천대
- socket
- dp
- HTTP 완벽 가이드
- 쉬운 문제
- 크롤링
- TCP
- 레벨 1
- type challenge
- javascript
- 프로그래머스
- typescript
- 알고리즘
- HTTP
- Crawling
- 자바스크립트
- BFS
- 타입 챌린지
Archives
- Today
- Total
kakasoo
[node.js] 구명보트 ( 프로그래머스 레벨2 ) 본문
반응형
// 프로그래머스 레벨2 구명보트를 풀었습니다.
const isEmpty = (stack) => (stack.length ? false : true);
function solution(people, limit) {
const sortedStack = people.sort((a, b) => a - b);
let count = 0;
while (!isEmpty(sortedStack)) {
let sum = sortedStack.pop();
while (sortedStack.length && sum + sortedStack[0] <= limit) {
sum += sortedStack.shift();
}
count++;
}
return count;
}
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 소수 만들기 ( 프로그래머스 레벨1 ) (0) | 2021.06.30 |
---|---|
[node.js] 멀쩡한 사각형 ( 프로그래머스 레벨2 ) (0) | 2021.06.29 |
[node.js] 큰수 만들기 ( 프로그래머스 레벨2 ) (0) | 2021.06.29 |
[node.js] 문자열 압축하기 ( 프로그래머스 레벨2 ) (0) | 2021.06.29 |
[node.js] 짝지어 제거하기 ( 프로그래머스 레벨2 ) (0) | 2021.06.29 |