Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- 자바스크립트
- Baekjoon
- dfs
- 깊이 우선 탐색
- 백준
- bfs
- softeer
- 티스토리챌린지
- Dynamic Programming
- join
- DP
- Lv. 0
- level 3
- Java
- Lv. 2
- SQL 고득점 KIT
- Lv. 1
- 너비 우선 탐색
- Python
- programmers
- 프로그래머스
- group by
- 소프티어
- 동적계획법
- LEVEL 2
- Lv. 3
- javascript
- 오블완
- SQL
Archives
- Today
- Total
목록garage game (1)
몸과 마음이 건전한 SW 개발자
Softeer [Level 3] [HSAT 2회 정기 코딩 인증평가 기출] Garage game {언어 : JavaScript}
문제 링크https://softeer.ai/practice/6276 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai정답 코드const readline = require('readline');const rl = readline.createInterface({ input: process.stdin, output: process.stdout,});const inputData = [];rl.on('line', (line) => { inputData.push(line.split(" ").map((e) => Number(e)));}).on('close', () => { let answer = 0; const n = inputData[0][0]; const..
알고리즘/풀었지만 다시 보기
2024. 10. 23. 17:24