🔎문제
🔎 풀이
import java.util.Arrays;
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) | 2022.02.08 |
---|---|
[프로그래머스/자바] 약수의 개수와 덧셈 (0) | 2022.02.07 |
[프로그래머스/자바] 소수 찾기 (에라토스테네스의 체) (0) | 2022.02.03 |
[프로그래머스/자바] 콜라츠의 추측 (0) | 2022.01.28 |
[프로그래머스/자바] 로또의 최고 순위와 최저 순위 (0) | 2022.01.27 |