K번째 수
문제링크:
https://school.programmers.co.kr/learn/courses/30/lessons/42748
코드
import java.util.Arrays;
class Solution {
public int[] solution(int[] array, int[][] commands) {
int[] answer = {};
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;
}
}
'PS > programmers' 카테고리의 다른 글
[Programmers/SQL] 조건에 맞는 개발자 찾기 (0) | 2025.03.20 |
---|---|
[Programmers/SQL] 업그레이드 된 아이템 구하기 (0) | 2025.03.18 |
[Programmers/SQL] 여러 기준으로 정렬하기 (0) | 2025.03.14 |
[programmers] 프로그래머스 위클리 챌린지 : 피로도 (0) | 2021.12.21 |
[programmers] 프로그래머스 위클리 챌린지 : 교점에 별 만들기 (0) | 2021.12.21 |
댓글