수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 1번 문제부터 마지막 문제까지 다음과 같이 찍습니다.
1번 수포자가 찍는 방식: 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, ...
2번 수포자가 찍는 방식: 2, 1, 2, 3, 2, 4, 2, 5, 2, 1, 2, 3, 2, 4, 2, 5, ...
3번 수포자가 찍는 방식: 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, ...
제한 조건
가장 많은 문제를 맞힌 사람이 누구인지 배열에 담아 return 하도록 solution 함수를 작성해주세요.
const solution = answers => {
let answer = [];
let first = [1, 2, 3, 4, 5];
let second = [2, 1, 2, 3, 2, 4, 2, 5];
let third = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5];
let firstCount = 0;
let secondCount = 0;
let thirdCount = 0;
while (first.length < answers.length) {
first = [...first, ...first];
}
while (second.length < answers.length) {
second = [...second, ...second];
}
while (third.length < answers.length) {
third = [...third, ...third];
}
for (let i = 0; i < answers.length; i++) {
if (first[i] === answers[i]) firstCount++;
if (second[i] === answers[i]) secondCount++;
if (third[i] === answers[i]) thirdCount++;
}
const max = Math.max(firstCount, secondCount, thirdCount);
if(firstCount === max) answer.push(1)
if(secondCount === max) answer.push(2)
if(thirdCount === max) answer.push(3)
return answer;
};