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 |
Tags
- 프로토타입
- 스택
- Next.js
- level1
- 백준
- React
- CSS
- mysemester
- superstarjypnation
- 카카오
- redux
- REST_API
- 코드스테이츠
- 생활코딩
- 큐
- vercel
- 자바스크립트
- UX
- 회고
- 프로그래머스
- html
- 운영체제
- 해시테이블
- web
- javascript
- 30daysdowoonchallenge
- 자료구조
- UI
- useState
- Til
Archives
- Today
- Total
목록정렬 (1)
데굴데굴

궁금증이 피어오르게 된 문제 -> 백준 10825 - 국영수 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./test.txt"; let input = fs.readFileSync(filePath).toString().trim().split("\n"); const N = Number(input.shift()); const scores = input.map((el) => el.split(" ").map((v, idx) => { if (idx > 0) v = Number(v); return v; }) ); let names = []; function sortAlphabetically(a, b) ..
Programming/JavaScript
2023. 7. 25. 15:00