문제
https://programmers.co.kr/learn/courses/30/lessons/42748
풀이
Arrays.copyOfRange 메서드를 이용해 array[]에서 원하는 영역을 잘라 복사하여 temp[]에 저장
저장된 temp[] 배열에서 원하는 k번째의 수를 answer[] 배열에 순서대로 저장 후 리턴
소스코드
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;
}
}
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 JAVA] 문자열 내 p와 y의 개수 (0) | 2023.01.02 |
---|---|
[프로그래머스 JAVA] 완주하지 못한 선수 (0) | 2021.11.28 |
[프로그래머스 JAVA] 숫자 문자열과 영단어 (0) | 2021.10.20 |
[프로그래머스 JAVA] 약수의 개수와 덧셈 (0) | 2021.10.11 |
[프로그래머스 JAVA] 내적 (0) | 2021.10.11 |