반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스
- ip
- type challenge
- Node.js
- 크롤링
- HTTP 완벽 가이드
- Crawling
- 타입스크립트
- 알고리즘
- typescript
- BFS
- 가천대
- 소켓
- Nestjs
- dp
- 레벨 1
- 수학
- 쉬운 문제
- dfs
- 그래프
- 타입 챌린지
- HTTP
- TCP
- 프로그래머스 레벨 2
- 문자열
- socket
- javascript
- 자바스크립트
- 백준
- Algorithm
Archives
- Today
- Total
목록수 이어 쓰기1 (1)
kakasoo
[node.js] 수 이어 쓰기 1 ( 백준 1748번 )
const readline = require("readline"); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); rl.on("line", (line) => { const numPad = new Array(line.length).fill(0).map((el, i) => i + 1); const acc = numPad.map((el, i) => { if (10 ** (i + 1) < Number(line)) { return el * 10 ** i * 9; } else { return el * (Number(line) + 1 - 10 ** i); } }); const sum = acc.reduce(..
프로그래밍/알고리즘 풀이
2021. 7. 29. 18:45