function solution(answers) {
let answer=[];
let a=[1, 2, 3, 4, 5];
let b=[2, 1, 2, 3, 2, 4, 2, 5];
let c=[3, 3, 1, 1, 2, 2, 4, 4, 5, 5];
let aCount=0, bCount=0, cCount=0;
for (let i=0;i<answers.length;i++){
if (answers[i]===a[i%a.length]){
aCount+=1;
}
if (answers[i]===b[i%b.length]){
bCount+=1;
}
if (answers[i]===c[i%c.length]){
cCount+=1;
}
}
const max=Math.max(aCount, bCount,cCount);
console.log('max', max, cCount)
if (max===aCount){
answer.push(1);
}
if(max===bCount){
answer.push(2);
}
if(max===cCount){
answer.push(3)
}
return answer;
}
코드가 중복될 것 같아서 고민했는데 이 방법이 제일 나은 것 같다. 다른 분들 코드를 보아도 이와 비슷하다.
핵심은 각 수포자의 찍기 주기로 answers를 나눠주는 것이다. if문으로 수포자 1, 2, 3을 나눠서 계산해주면 답은 쉽게 나온다.
수포자 각각의 경우를 모두 계산해 주어야 하는데(각각 케이스를 모두 if문으로 나눠야 하는데) 습관적으로 if else if else를 써서 틀렸었다.