Lv.1 신고 결과 받기

ujinujin·2022년 1월 27일
0

코딩테스트 뿌시기

목록 보기
21/57

🤖문제

🤷🏻‍♀️ 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>

해시테이블로 풀어야되는 문제인 거 같다. 시간초과가 나서....

profile
백수와 취준생 그 사이 어디

0개의 댓글

관련 채용 정보