programmers - 모의고사

주지홍·2022년 4월 9일
0

프로그래머스 Lv 1

목록 보기
21/53
post-thumbnail

문제

수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 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, ...

제한 조건

  • 시험은 최대 10,000 문제로 구성되어있습니다.
  • 문제의 정답은 1, 2, 3, 4, 5중 하나입니다.
  • 가장 높은 점수를 받은 사람이 여럿일 경우, return하는 값을 오름차순 정렬해주세요.

매개변수

  1. 1번 문제부터 마지막 문제까지의 정답이 순서대로 들은 배열 answers

문제 상세 보러가기

가장 많은 문제를 맞힌 사람이 누구인지 배열에 담아 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;
};
profile
오늘도 내일도 끊임없는 싸움

0개의 댓글

관련 채용 정보