js programmers 명예의 전당
-
[프로그래머스 Level 1] 명예의 전당 (1) (JavaScript)Coding Test/JavaScript 2024. 11. 25. 16:39
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/138477 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 입출력 예kscoreresult3[10, 100, 20, 150, 1, 100, 200][10, 10, 10, 20, 20, 100, 100]4[0, 300, 40, 300, 20, 70, 150, 50, 500, 1000][0, 0, 0, 0, 20, 40, 70, 70, 150, 300] 풀이function solution(k, score) { const answer = []; const kNums = []; ..