프로그래머스 완전탐색 Level 1 - 모의고사
function solution(answers) {
const students = [[1, 2, 3, 4, 5], [2, 1, 2, 3, 2, 4, 2, 5], [3, 3, 1, 1, 2, 2, 4, 4, 5, 5]];
const winner = [];
let topScore = 0;
students.forEach((student, studentIdx) => {
let score = 0;
answers.forEach((answer, idx) => {
if (answer == student[idx % student.length]) score++;
})
if (score > topScore) {
topScore = score;
winner.splice(0);
winner.push(studentIdx + 1);
} else if (score === topScore) {
winner.push(studentIdx + 1);
}
})
return winner;
}
- 수포자 1, 수포자 2, 수포자 3의 정답으로 students 배열을 만듦
- students 배열을 순회하면서 answer와 student의 정답이 맞을 경우 score을 1씩 증가
- score가 topScore보다 클 경우 topScore에 score 값을 할당, winner에 있는 기존 student를 삭제하고 새로운 topScore를 얻은 student의 index + 1 을 삽입
- score와 topScore를 비교하여 score가 topScore보다 같을 경우 winner 배열에 해당 student의 index + 1 을 삽입