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;
}
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 최소 직사각형 (0) | 2023.10.28 |
---|---|
[프로그래머스] 타겟 넘버 (0) | 2023.10.28 |
[프로그래머스] 카드 뭉치 (0) | 2023.10.15 |
[프로그래머스] MySQL (정리중) (0) | 2023.10.13 |
[프로그래머스] 네트워크 (0) | 2023.09.24 |