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
- js ์ค์ฝํ
- emotion RSC
- ์ต์ ๋์ฒด์ด๋
- ์ฌ์ฉ์ฑ ๊ฐ์
- ์ค์ฝํ
- ์๋ฐ์คํฌ๋ฆฝํธ ์ค์ฝํ
- ๋ฐฑ์ค 1339๋ฒ ์๋ฐ์คํฌ๋ฆฝํธ
- ๋ฐฑ์ค 2108 ์๋ฐ์คํฌ๋ฆฝํธ
- js ๋ฌธ์์ด ์์ถ
- ์นด์นด์ค ์ฝํ
- ๋ฐฑ์ค 1339๋ฒ js
- suspense ๋์์๋ฆฌ
- emtion app router
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง
- ๋ฐฑ์ค 2108 nodejs
- ํ๋ก๊ทธ๋๋จธ์ค ๋ฌธ์์ด ์์ถ
- 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
- js
- suspense react-query
- suspense ๋น๋๊ธฐ
- ์๋ฐ์คํฌ๋ฆฝํธ ๋ฌธ์์ด ์์ถ
- ๋ฆฌ์กํธ์ฟผ๋ฆฌ suspense
- suspense ๋ณ๋ชฉํ์
- ํ๋ก๊ทธ๋๋จธ์ค ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- ๋ฐฑ์ค 1339๋ฒ nodejs
- next13 emotion
- js ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
Archives
- Today
- Total
Lennon FE
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] ์ ๊ณ ๊ฒฐ๊ณผ ๋ฐ๊ธฐ(js) ๋ณธ๋ฌธ
๐ฅ Algorithm/Programmers
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] ์ ๊ณ ๊ฒฐ๊ณผ ๋ฐ๊ธฐ(js)
Lennon 2022. 1. 22. 08:08728x90
๋ฐ์ํ
https://programmers.co.kr/learn/courses/30/lessons/92334?language=javascript#
function solution(id_list, report, k) {
report = [...new Set(report)].map(v => v.split(' '));
const reported = report.map(v => v[1]);
const reportCount = new Array(id_list.length).fill(0);
const kReported = [];
reported.forEach(v => {
reportCount[id_list.indexOf(v)]++;
})
reportCount.forEach((v,idx) => {
if(v >= k){
kReported.push(id_list[idx]);
}
})
const answer = new Array(id_list.length).fill(0);
report.forEach((v,idx) => {
if(kReported.includes(v[1])){
answer[id_list.indexOf(v[0])]++;
}
})
return answer
}
๋จผ์ ์ ๊ณ ๋ ํ๋๋ง ์ ์ฉ๋๋ฏ๋ก Set์ ์ด์ฉํด report์ ๋ํด ์ค๋ณต๊ฐ์ ์์ ์ค๋ค.
reported => ์ ๊ณ ๋ ์ฌ๋๋ค ๋ฐฐ์ด
reportCount => ์ ๊ณ ํ์ ๊ฒ์ฆ์ ์ํ ๋ฐฐ์ด
kReported => k๋ฒ ์ด์ ์ ๊ณ ๋ฐ์ ์ฌ๋๋ค์ ์ํ ๋ฐฐ์ด
7-9 line
์ฌ๋ ๋ณ ์ ๊ณ ํ์๋ฅผ ์ธ์ด reportCount์ ์ ์ฅ (indexOf๋ฅผ ํ์ฉ)
11-15 line
์ ๊ณ ํ์๊ฐ k๋ณด๋ค ๋์ ์ฌ๋์ kReported ๋ฐฐ์ด์ push
19-23 line
report๋ฅผ ์ํํ๋ฉฐ k๋ฒ ์ด์ ์ ๊ณ ๋ฅผ ๋นํ ์ฌ๋์ ์ ๊ณ ํ ์ฌ๋์ ํ์๋ฅผ 1๊ฐ์ฉ ์ฆ๊ฐ
์นด์นด์คํก 2022 ๊ณต์ฑ ์ ์ผํ 1๋จ๊ณ ๋ฌธ์ ์ด๋ค. ๋จ์ ๊ตฌํ๋ฌธ์ ๋ผ ๋๋ถ๋ถ์ด ๋ง์์๊ฑฐ๋ผ ์๊ฐํ๋ค.
728x90
๋ฐ์ํ
'๐ฅ Algorithm > Programmers' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] k์ง์์์ ์์ ๊ฐ์ ๊ตฌํ๊ธฐ(js) (0) | 2022.01.22 |
---|---|
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] ์ฃผ์ฐจ ์๊ธ ๊ณ์ฐ(js) (0) | 2022.01.22 |
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] n์ง์ ๊ฒ์(js) (0) | 2022.01.22 |
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] ํํ (js) (0) | 2021.11.18 |
[ํ๋ก๊ทธ๋๋จธ์ค Lv.2] ์์ ์ฐพ๊ธฐ (js) (0) | 2021.11.12 |
Comments