728x90
반응형
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++){
answer[i] = sp(commands[i][0], commands[i][1], commands[i][2], array);
}
return answer;
}
static int sp(int i, int j, int k, int[] arr){
int[] arr1 = Arrays.copyOfRange(arr, i-1, j);
Arrays.sort(arr1);
return arr1[k-1];
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 크기가 작은 부분문자열 (0) | 2023.03.30 |
---|---|
프로그래머스 - 두 개 뽑아서 더하기 (0) | 2023.03.29 |
프로그래머스 - 문자열 내 마음대로 정렬하기 (0) | 2023.03.29 |
프로그래머스 - [1차] 비밀지도 (1) | 2023.03.28 |
프로그래머스 - 최소직사각형 (0) | 2023.03.28 |