일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- javascript
- C언어
- softeer
- DP
- 깊이 우선 탐색
- 파이썬
- Dynamic Programming
- 오블완
- SQL 고득점 KIT
- Java
- bfs
- 프로그래머스
- join
- programmers
- LEVEL 2
- Python
- Lv. 2
- 티스토리챌린지
- select
- 자바스크립트
- SQL
- Lv. 1
- 너비 우선 탐색
- Lv. 3
- 소프티어
- level 3
- 동적계획법
- dfs
- group by
- Lv. 0
- Today
- Total
목록2024/10 (12)
몸과 마음이 건전한 SW 개발자
문제 링크https://softeer.ai/practice/6248 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, m] = inputData[0]; const nAdjL = Array.from({..
문제 링크https://softeer.ai/practice/7649 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai정답 코드const readline = require('readline');const rl = readline.createInterface({ input: process.stdin, output: process.stdout,});// 트리let [n, m] = [0, 0];let fatherString = ""; // 길이가 M인 문자열 Sconst lines = [];let idx = 0;rl.on('line', (line) => { if (idx === 0) { [n, m] = line.split(" ").map((e) => Number(..
문제 링크https://softeer.ai/practice/6292 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 [k, p, n] = inputData[0]; const divide = BigInt..
문제 링크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..
문제 링크https://softeer.ai/practice/9495 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]; const celebrities = inputData.s..
문제 링크https://softeer.ai/practice/7697 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 solution = (dq) => { let stack = []; let si = -1; let..