🤷🏻♀️ 2022년 1월 27일 (해결 X)
<script>
function solution(id_list, report, k) {
let answer = Array.from({length: id_list.length}, () => 0);
let arrSplit = [];
let beReported = [];
report = [...new Set(report)];
report.forEach((v,i) => {
arrSplit.push(v.split(" "));
beReported.push(v.split(" ")[1]);
});
id_list.forEach((v,i) => {
let reportArray = arrSplit.filter((arr) => v===arr[0]);
if (reportArray.length !== 0) {
reportArray.forEach(val => {
if (beReported.filter((person) => val[1] === person).length >= k) {
answer[i] += 1;
}
})
}
})
return answer;
}
</script>
해시테이블로 풀어야되는 문제인 거 같다. 시간초과가 나서....