일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Baekjoon
- 오블완
- Python
- 자바스크립트
- dfs
- Lv. 1
- DP
- 너비 우선 탐색
- Java
- Dynamic Programming
- 파이썬
- 프로그래머스
- 깊이 우선 탐색
- Lv. 2
- bfs
- 소프티어
- softeer
- 티스토리챌린지
- programmers
- LEVEL 2
- group by
- join
- SQL
- javascript
- Lv. 0
- level 3
- Lv. 3
- SQL 고득점 KIT
- select
- 동적계획법
- Today
- Total
목록소프티어 (40)
몸과 마음이 건전한 SW 개발자
문제 링크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..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/7fCzl/btsKci4fFE0/fJz3PYuuWV8ZNzzzjNsB10/img.png)
문제 링크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..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bgc6rb/btsIkt6Xhri/4KzlknkQwTcJYj5SslG7bk/img.png)
순서 공식문서를 들어간다.좌측 목차에 readline을 클릭한다.Example: Tiny CLI을 클릭 또는 찾는다.배열에 저장한다.결론 1. 공식문서 코딩테스트 화면은 다를 수 있으나 공식 문서를 찾아서 클릭하면 된다.클릭하면 아래와 같은 화면이 나온다. 2. Readline 왼쪽에서 readline을 찾아서 클릭한다.클릭하면 아래와 같은 화면이 나온다. 3. Tiny CLI 스크롤을 내려서 Example: Tiny CLI를 클릭한다.클릭하면 아래와 같은 화면이 나온다.코드는 아래와 같다.const readline = require('readline');const rl = readline.createInterface({ input: process.stdin, output: process.stdout..