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
- ์๋ฐ์คํฌ๋ฆฝํธ ์ค์ฝํ
- ํ๋ก๊ทธ๋๋จธ์ค ๋ฌธ์์ด ์์ถ
- ๊ตฌ๋ฆํค
- js ๋ฌธ์์ด ์์ถ
- ์๋ฐ์คํฌ๋ฆฝํธ ๋ฌธ์์ด ์์ถ
- next13 emotion
- ๋ฐฑ์ค 2108 nodejs
- js ์ค์ฝํ
- ์นด์นด์ค ์ฝํ
- ๋ฐฑ์ค 2108 ์๋ฐ์คํฌ๋ฆฝํธ
- suspense ๋ณ๋ชฉํ์
- ๋ฐฑ์ค 1339๋ฒ nodejs
- emtion app router
- suspense react-query
- js
- suspense ๋์์๋ฆฌ
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง
- ๋ฐฑ์ค 1339๋ฒ ์๋ฐ์คํฌ๋ฆฝํธ
- ํ๋ก๊ทธ๋๋จธ์ค ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- ์ฌ์ฉ์ฑ ๊ฐ์
- js ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- suspense ๋น๋๊ธฐ
- emotion RSC
- ์ค์ฝํ
- ๋ฆฌ์กํธ์ฟผ๋ฆฌ suspense
- ์ต์ ๋์ฒด์ด๋
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง ํ๊ณ
- app router emotion
- ๋ฐฑ์ค 1339๋ฒ js
Archives
- Today
- Total
Lennon FE
[๋ฐฑ์ค 3052๋ฒ] ๋๋จธ์ง - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs) ๋ณธ๋ฌธ
๐ฅ Algorithm/Baekjoon
[๋ฐฑ์ค 3052๋ฒ] ๋๋จธ์ง - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs)
Lennon 2022. 1. 17. 01:33728x90
๋ฐ์ํ
https://www.acmicpc.net/problem/3052
const fs = require('fs');
let input = fs
.readFileSync('/dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => +v);
const map = new Map();
input.filter((value) => {
map.set(value % 42);
});
console.log(map.size);
input => ๊ฐํ๋์ด ์ ๋ ฅ๋ ๊ฐ๋ค์ ๋ฐฐ์ด์ ๋ฃ์ (๋ฌธ์๋ก ๋ณํ => ์์ ๊ณต๋ฐฑ ์ ๊ฑฐ => ๊ฐํ์ ๊ธฐ์ค์ผ๋ก ๋ฐฐ์ด ์ ์ => ๋ฌธ์๋ฅผ ์ซ์๋ก)
map์ ์ ์ํด ๋๋ ๊ฐ๋ค์ ๋ฃ๊ณ , map ์ฌ์ด์ฆ๋ฅผ ๋ฆฌํดํจ.
(map์ ์ค๋ณต๋ ๊ฐ์ด ๋ค์ด๊ฐ ์ ์์ผ๋ฏ๋ก!)
728x90
๋ฐ์ํ
'๐ฅ Algorithm > Baekjoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Comments