function solution(array, commands) {
return commands.map(
([start, end, select]) =>
array
.slice(start - 1, end)
.sort((a, b) => a - b)[select - 1]
);
}
'JAVASCRIPT > 자바스크립트 알고리즘' 카테고리의 다른 글
[프로그래머스 Lv.1] 같은 숫자는 싫어 (0) | 2021.01.29 |
---|---|
[프로그래머스 Lv.1] 가운데 글자 가져오기 (0) | 2021.01.28 |
[프로그래머스 Lv.1] 2016년 (0) | 2020.12.31 |
[프로그래머스 Lv.1] 체육복 (0) | 2020.12.31 |
[프로그래머스 Lv.1] 모의고사 (0) | 2020.12.30 |