개발 공부
(프로그래머스)(자바) K번째수 본문
코딩테스트연습-정렬-k번째수
https://programmers.co.kr/learn/courses/30/lessons/42748
import java.util.*;
class Solution {
public int[] solution(int[] array, int[][] commands) {
int[] answer = new int[commands.length];
for(int i = 0 ; i < commands.length ; i++){
int[] comArr = commands[i];
int[] newArr = new int[comArr[1]-comArr[0]+1];
int index = 0;
for(int j = 0; j < newArr.length; j++ ){
//System.out.println(newArr.length+"/"+comArr[0]+"/"+index);
newArr[j] = array[comArr[0]-1+j];
index++;
}
Arrays.sort(newArr);
//System.out.println(newArr[0]);
//System.out.println(newArr.length+"//"+ (comArr[2]-1));
answer[i] = newArr[comArr[2]-1];
}
return answer;
}
}
'알고리즘' 카테고리의 다른 글
(프로그래머스)(자바) 전화번호 목록 (0) | 2021.07.07 |
---|---|
(프로그래머스)(자바) 타겟 넘버 (0) | 2021.07.07 |
(프로그래머스)(자바) 더 맵게 (0) | 2021.07.07 |
(프로그래머스)(자바) 완주하지 못한 선수 (0) | 2021.07.07 |
(프로그래머스)(자바) 모의고사 (0) | 2021.07.07 |
Comments