250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 JS)K번째 수 본문
728x90
반응형
programmers.co.kr/learn/courses/30/lessons/42748
function solution(array, commands) {
let answer = [];
commands.filter((val, index) => {
answer.push(
array.slice(commands[index][0] - 1, commands[index][1]).sort((a, b) => a - b)[
commands[index][2] - 1
]
);
});
return answer;
}
728x90
반응형
'프로그래머스 알고리즘 > 1단계' 카테고리의 다른 글
(프로그래머스 JS)문자열 내 마음대로 정렬하기 (0) | 2021.02.25 |
---|---|
(프로그래머스 JS)두 정수 사이의 합 (0) | 2021.02.25 |
(프로그래머스 JS)모의고사 (0) | 2021.02.24 |
(프로그래머스 JS)두 개 뽑아서 더하기 (0) | 2021.02.24 |
(프로그래머스 JS)완주하지 못한 선수 (0) | 2021.02.24 |