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 번째 수를 정답 배열에 삽입하면 되는 간단한 문제이다.