99클럽 코테 스터디 20일차 TIL + 완전탐색

17__COLIN·2024년 11월 16일
0

99클럽

목록 보기
19/34
post-thumbnail

모의고사

코드

function solution(answers) {
  const patterns = ["12345", "21232425", "3311224455"];
  const scores = patterns.map(
    (p) => answers.filter((a, i) => a == p[i % p.length]).length
  );
  const maxScore = Math.max(...scores);

  return scores.map((s, i) => (s === maxScore ? i + 1 : null)).filter(Boolean);
}
profile
조금씩 꾸준히

0개의 댓글