컴퓨터를 공부하고자 마음먹은지 N일차

[111일차]프로그래머스/ k번째 수 (javascript) 본문

🧠PS

[111일차]프로그래머스/ k번째 수 (javascript)

졸린새 2020. 12. 29. 02:46
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 프로그래머스 k번째 수 */
function solution(array, commands) {
  var answer = [];
  //commands 배열을 순회한다.
    //더미를 선언하고 arr.slice(0번째인덱스값 - 1, 1번째인덱스).sort(a - b);
    //더미[2번째인덱스값 - 1]을 정답배열에 푸쉬한다.
 
  for(let command of commands){
    let dummy = array.slice(command[0- 1, command[1]).sort((a, b)=>- b);
    answer.push(dummy[command[2- 1])
  }
  
  return answer;
}
/* test */
console.log(solution([1526374], [[253], [441], [173]]))
cs

최근 공부한 정렬문제를 풀었다.
정렬메소드를 쓸 수있음에 감사..!

'🧠PS' 카테고리의 다른 글

[205일차]boj1920 node.js  (0) 2021.04.06
[200일차]boj1654 node.js  (0) 2021.04.03
[116일차] 프로그래머스 / N으로 표현하기  (0) 2021.01.03
[50일차]백준/BOJ14681 (Node.js)  (0) 2020.10.28
BOJ node.js로 입력하기 (갠저)  (0) 2020.10.28
Comments