본문 바로가기
Algorithm/Programmers

[프로그래머스(programmers)] (Lv1) K번째 수

by 광진구뚝배기 2021. 5. 19.

알고리즘 문제 풀이 / 프로그래머스 (programmers)  -  K번째 수

 

 

문제 링크

https://programmers.co.kr/learn/courses/30/lessons/42748

 

코딩테스트 연습 - K번째수

[1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3]

programmers.co.kr

 

 

문제 풀이

public int[] solution(int[] array, int[][] commands) {
	int[] answer = new int[commands.length];

	for(int i = 0; i < commands.length; i++){
        int[] arr = Arrays.copyOfRange(array, commands[i][0]-1, commands[i][1]);
        Arrays.sort(arr);
        answer[i] = arr[commands[i][2]-1];
			
        }

    return answer;
}
반응형

댓글