프로그래머스 K 번째 수 JavaScript

김건호·2021년 10월 6일
0
post-custom-banner

문제링크

function solution(array, commands) {
    var answer = [];
    for(var i=0 ; i<commands.length ; ++i) {
        var temp=[];
        for(var j=commands[i][0]-1 ; j<commands[i][1] ; ++j) {
            temp.push(array[j]);
        }
        temp.sort((a,b)=> {
            return a-b;
        });
        answer.push(temp[commands[i][2]-1]);
    }
    return answer;
}

주어진 조건에 따라 배열을 잘라 임시배열에 저장후 k 번째 수를 정답 배열에 삽입하면 되는 간단한 문제이다.

profile
Ken, 🔽🔽 거노밥 유튜브(house icon) 🔽🔽
post-custom-banner

0개의 댓글