일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- app router emotion
- 리액트쿼리 suspense
- 백준 1339번 자바스크립트
- 사용성 개선
- 백준 2108 자바스크립트
- 백준 2108 nodejs
- suspense react-query
- 구름톤 챌린지 회고
- js
- js 문자열 압축
- emotion RSC
- next13 emotion
- js 거리두기 확인하기
- suspense 비동기
- 프로그래머스 거리두기 확인하기
- 스코프
- emtion app router
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 구름톤
- js 스코프
- 옵셔널체이닝
- 프로그래머스 문자열 압축
- suspense 동작원리
- 카카오 코테
- 자바스크립트 스코프
- 백준 1339번 nodejs
- 구름톤 챌린지
- suspense 병목현상
- 백준 1339번 js
- 자바스크립트 문자열 압축
- Today
- Total
목록백준 2108 nodejs (2)
Lennon FE
https://www.acmicpc.net/problem/2108 2108번: 통계학 첫째 줄에 수의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 단, N은 홀수이다. 그 다음 N개의 줄에는 정수들이 주어진다. 입력되는 정수의 절댓값은 4,000을 넘지 않는다. www.acmicpc.net const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); let input = []; rl.on('line', function (line) { input.push(line); if (input.length === +input[0] + 1) { r..
https://www.acmicpc.net/problem/2108 2108번: 통계학 첫째 줄에 수의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 단, N은 홀수이다. 그 다음 N개의 줄에는 정수들이 주어진다. 입력되는 정수의 절댓값은 4,000을 넘지 않는다. www.acmicpc.net const fs = require('fs'); let input = fs.readFileSync('dev/stdin').toString().trim().split('\n'); input.shift(); input = input.map((v) => +v).sort((a, b) => a - b); // 평균 console.log(Math.round(input.reduce((prev, cur) => prev + cu..