티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/42748
문제
풀이
function solution(array, commands) {
const answer = []
commands.map((command) => {
const i = command[0]
const j = command[1]
const k = command[2]
answer.push(array.slice(i - 1, j).sort((a, b) => a - b)[k - 1])
})
return answer
}
'Algorithms' 카테고리의 다른 글
[알고리즘] 프로그래머스 - 크레인 인형뽑기 게임 (Javascript) (0) | 2022.02.11 |
---|---|
[알고리즘] 프로그래머스 - 폰켓몬 (Javascript) (0) | 2022.02.03 |
[알고리즘] 프로그래머스 - 숫자 문자열과 영단어 (Javascript) (0) | 2022.01.30 |
[알고리즘] 프로그래머스 - 신규 아이디 추천 (Javascript) (0) | 2022.01.29 |
[알고리즘] 프로그래머스 - 나누어 떨어지는 숫자 배열 (Javascript) (0) | 2022.01.29 |