반응형
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 |
Tags
- dp
- 프로그래머스
- javascript
- 프로그래머스 레벨 2
- 쉬운 문제
- Algorithm
- socket
- HTTP
- TCP
- type challenge
- 자바스크립트
- 소켓
- 문자열
- 백준
- 레벨 1
- 알고리즘
- 타입 챌린지
- Crawling
- BFS
- HTTP 완벽 가이드
- Nestjs
- dfs
- typescript
- 가천대
- 그래프
- ip
- Node.js
- 수학
- 타입스크립트
- 크롤링
Archives
- Today
- Total
kakasoo
[node.js] 크레인 인형 뽑기 ( 프로그래머스 레벨1 ) 본문
반응형
const checkDoll = (stack, curCount) => {
stack.some((el, i) => {
if(stack[i] === stack[i+1]) {
stack.pop();
stack.pop();
curCount += 2;
}
})
return curCount;
}
const solution = (board, moves) => {
let answer = 0;
let stack = [];
moves.map((el) => {
board.some((row, height) => {
if(row[el -1] != 0) {
stack.push(row[el -1]);
answer = checkDoll(stack, answer);
row[el -1] = 0;
return true;
}
});
});
return answer;
}
이전에 푼 문제들을 차례대로 포스팅하려고 한다.
코드 자체가 그렇게 어려운 건 아니라서 구태여 설명할 게 없을 거 같다.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 모의고사 ( 프로그래머스 레벨1 ) (0) | 2021.06.25 |
---|---|
[node.js] k번째 수 ( 프로그래머스 레벨1 ) (0) | 2021.06.25 |
[node.js] 날짜 계산 ( 백준 1476번 ) (0) | 2021.05.12 |
[node.js] 일곱 난쟁이 ( 백준 2309번 ) (0) | 2021.05.12 |
[node.js] 곱셈 ( 백준 1629번 ) (0) | 2021.05.11 |