일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비동기 처리
- callback
- commit
- serialization
- 런타임
- 커밋
- Async
- tar
- javascript
- vscode
- ci/cd
- 개발
- 자바스크립트
- 역직렬화
- 타입스크립트
- js
- json
- 객체지향
- Git
- await
- vanilla javascript
- Deserialization
- typescript
- OOP
- 비동기
- 절차지향
- 바닐라 자바스크립트
- Dictionary
- git commit
- 프론트엔드
- Today
- Total
목록문제 풀이/프로그래머스 (95)
Hyundolog
문제 풀이 1차 (정확성 71.4점) 오답 function solution(array, commands) { let answer = []; for(let i = 0; i a-b); answer.push(tmp[commands[i][2]-1]); } return answer; } 2차 function solution(array, commands) { let answer = []; for..
문제 풀이 1차 function solution(d, budget) { d = d.sort((a, b) => a - b); let cnt = 0; for(let i = 0; i budget) { break; } else { budget -= d[i]; cnt++; } } return cnt; } 2차 function solution(d, budget) { d = d.sort((a, b) => a - b); while(d.reduce((acc, cur) => acc += cur, 0) > budget) { d.pop(); } return d.length; } 리뷰 reduce() 메소드와 while 조건을 함께 사용
문제 풀이 1차 process.stdin.setEncoding('utf8'); process.stdin.on('data', data => { const n = data.split(" "); const a = Number(n[0]), b = Number(n[1]); let rows = '*'.repeat(a); for(let i = 0; i < b; i++) { console.log(rows) } }); 리뷰 자바스크립트 입출력 코드 암기 필요