function solution(array, commands) {
let answer = [];
for(var i=0; i<commands.length; i++){
let list = array.slice(commands[i][0]-1, commands[i][1]).sort((a,b)=>(a - b));
answer.push(list[commands[i][2]-1]);
}
return answer;
}
'JavaScript' 카테고리의 다른 글
[프로그래머스 Lv.1] 푸드 파이트 대회 javascript (0) | 2024.11.14 |
---|---|
[프로그래머스 Lv.1] 콜라문제 javascript (0) | 2024.11.12 |
[프로그래머스 Lv.1] 문자열 내 마음대로 정렬하기 javascript (1) | 2024.11.06 |
[프로그래머스 Lv.1] 가장 가까운 같은 숫자 javascript (0) | 2024.11.05 |
[프로그래머스 Lv.1] 숫자 문자열과 영단어 (0) | 2024.11.04 |