function solution(array, commands) {
let answer = [];
//slice(자르고) sort((a-b) => b-a)(정렬) push (answer에 넣기 위해)
for(let i = 0; i < commands.length; i++){
let sliceList = array.slice(commands[i][0] - 1, commands[i][1]); //자르기
sliceList.sort((a, b) => a - b); //정렬
// index값은 0부터 시작해서, commands[i][0] -1을 해 주어야 slice를 시작하는 값을 제대로 지정할 수 있음. slice(start, end)에서 end는 포함되지 않고 slice되는데, 같은 원리로 commands[i][1] 에는 +1 해주지 않음.
answer.push(sliceList[commands[i][2] - 1]);
}
return answer;
}
function solution(array, commands) {
return commands.map(command => {
const [sPosition, ePosition, position] = command;
const newArray = array
.filter((value, fIndex) => fIndex >= sPosition - 1 && fIndex <= ePosition - 1)
.sort((a,b) => a - b);
return newArray[position - 1];
})
}
sort((a, b) => a - b))
: 배열을 오름차순으로 정렬
(참고 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/sort )
(참고 : https://hianna.tistory.com/409 )