Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바스크립트
- 크롤링
- 프로그래밍
- 입출력
- js
- 함수형 인터페이스
- 셀레니움
- android
- 파이썬
- 메모장
- 형태소 분석기
- 개발자
- Python
- javascript
- Programmers
- 모바일
- 코딩
- 자바
- 세션
- MySQL
- jsp
- 프로그래머스
- 개발
- jdbc
- n^2 배열 자르기
- 유튜브
- 파일 저장
- 데이터베이스
- 이진 변환 반복하기
- java
Archives
- Today
- Total
목록카카오 (1)
개인용 복습공간
프로그래머스 - 크레인 인형뽑기 게임
board를 변환 후 shift()로 뽑아서 동일한 인형이면 pop() 시키기 function solution(board, moves) { board = board.map((item, idx) => item.reduce((acc, el, lvl) => { if (board[lvl][idx] != 0) { acc.push(board[lvl][idx]); } return acc; }, [])); let temp = []; return moves.reduce((rs, el) => { const picker = board[el - 1].shift(); if(picker){ if (temp[temp.length - 1] == picker) { temp.pop(); rs += 2; }else{ temp.push(p..
programmers
2023. 10. 25. 12:56