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++){
int[] arr = Arrays.copyOfRange(array, commands[i][0]-1, commands[i][1]);
Arrays.sort(arr);
answer[i] = arr[commands[i][2]-1];
}
return answer;
}
}
결과
'코딩 문제 > 프로그래머스' 카테고리의 다른 글
프로그래머스 - 코딩테스트 - Level2 - 124 나라의 숫자 (0) | 2021.02.22 |
---|---|
프로그래머스 - 코딩테스트 - Level2 - 기능개발 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level1 - 체육복 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level1 - 모의고사 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level1 - 신규 아이디 추천 (0) | 2021.02.22 |