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[] temp = Arrays.copyOfRange(array, commands[i][0] - 1, commands[i][1]);
Arrays.sort(temp);
answer[i] = temp[commands[i][2] - 1];
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 소수 찾기 (0) | 2023.02.19 |
---|---|
[프로그래머스] 2016년 (0) | 2023.02.18 |
[프로그래머스] 문자열 내 마음대로 정렬하기 (0) | 2023.02.18 |
[프로그래머스] 최대공약수와 최소공배수 (0) | 2023.02.15 |
[프로그래머스] 구명보트 (0) | 2023.02.10 |