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 | 31 |
Tags
- 파이썬
- dfs
- join
- Baekjoon
- 티스토리챌린지
- 프로그래머스
- javascript
- Python
- group by
- Java
- Lv. 3
- 너비 우선 탐색
- 깊이 우선 탐색
- Lv. 2
- level 3
- Lv. 1
- LEVEL 2
- SQL
- 백준
- SQL 고득점 KIT
- Dynamic Programming
- softeer
- DP
- 오블완
- programmers
- 동적계획법
- Lv. 0
- 소프티어
- 자바스크립트
- bfs
Archives
- Today
- Total
목록javascript (157)
몸과 마음이 건전한 SW 개발자
Softeer Level 2 X marks the Spot {언어 : JavaScript}
문제 링크 https://softeer.ai/practice/7703 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 정답 코드 const readline = require("readline"); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); let numberOfPairs = 0; // 문자열 쌍의 개수 N let currentLine = 0; // 현재 처리 중인 입력 줄 const isValid = ["x", "X"]; const result = []; // 결과를 저장할 배열 rl.on("line", (line, index) => { if (index === 0) {..
알고리즘
2024. 2. 13. 23:27