250x250
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
- 알고리즘
- jwt
- v8 원리
- 리덕스
- 항해99 사전스터디
- 웹팩 기본개념
- FP 특징
- 실행컨텍스트
- js배열 알고리즘
- 리액트 렌더링 최적화
- this
- Js module
- 리액트
- 렌더링 최적화
- 함수형 프로그래밍 특징
- 항해99 미니프로젝트
- 타입스크립트
- JS module system
- 웹 크롤링
- toggle-btn
- 테스트 코드 툴 비교
- 항해99 부트캠프
- 항해99
- 리액트 메모
- gql restapi 차이
- chromatic error
- 자바스크립트 엔진 v8
- next js
- 코어자바스크립트
- 리액트 메모이제이션
Archives
- Today
- Total
목록11399 js (1)
Jaeilit
백준 ATM 11399 js
내 코드 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./준/누적합/11399/input.txt"; const input = require("fs") .readFileSync(filePath) .toString() .trim() .split("\n"); const N = input.shift(); const time = input.map((e) => e.split(" ").map(Number)).flat(); // [[1, 3], [2, 1], [3, 4], [4, 3], [5, 2]] let arr = []; time.forEach((e, i) => { return arr.push([i ..
알고리즘
2022. 10. 21. 15:54