반응형
https://programmers.co.kr/learn/courses/30/lessons/42748
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++){
//copyOfRange(배열, 첫번째index(포함), 마지막index(미포함))
//배열은 0부터 시작이니까 첫번째index값에 -1을해준다. 마지막index를 포함하지않으니 자동으로-1이된 셈이다.
int[] temp = Arrays.copyOfRange(array, commands[i][0]-1, commands[i][1]);
Arrays.sort(temp);
//마찬가지로 k번째 있는 수도 배열은 0부터시작이니까 -1을 해줘한다.
answer[i] = temp[commands[i][2]-1];
}
return answer;
}
}
반응형
'코딩테스트 > 프로그래머스 1단계' 카테고리의 다른 글
프로그래머스 1단계 - 나누어 떨어지는 숫자 배열 (0) | 2021.04.19 |
---|---|
프로그래머스 1단계 - 모의고사 (0) | 2021.04.18 |
프로그래머스 1단계 - 체육복 (0) | 2021.04.16 |
프로그래머스 1단계 - 두개 뽑아서 더하기 (0) | 2021.04.15 |
프로그래머스 1단계 - 크레인 인형뽑기 게임 (0) | 2021.04.14 |