자바스크립트 모의고사
-
[프로그래머스 Level 1] 모의고사 (JavaScript)Coding Test/JavaScript 2024. 12. 2. 17:17
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/42840 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 입출력 예answersreturn[1,2,3,4,5][1][1,3,2,4,2][1,2,3] 풀이function solution(answers) { const answer = []; const ans1 = [1, 2, 3, 4, 5]; const ans2 = [2, 1, 2, 3, 2, 4, 2, 5] const ans3 = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5]; const an..