일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQL
- Lv. 1
- SQL 고득점 KIT
- DP
- 너비 우선 탐색
- 동적계획법
- 파이썬
- softeer
- level 3
- Java
- C언어
- 프로그래머스
- programmers
- 소프티어
- Lv. 2
- 깊이 우선 탐색
- dfs
- Lv. 0
- 티스토리챌린지
- bfs
- 자바스크립트
- group by
- Lv. 3
- javascript
- 오블완
- select
- join
- Python
- LEVEL 2
- Dynamic Programming
- Today
- Total
목록2024/11/01 (2)
몸과 마음이 건전한 SW 개발자
문제 링크https://softeer.ai/practice/7726 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(" "));}).on('close', () => { const [n, m] = inputData[0].map((e) => Number(e)); const board = inputData.sl..
문제 링크https://softeer.ai/practice/9496 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', () => { const n = inputData[0][0]; const processes = inputData[..