728x90
프로그래머스 1단계
K번째 수
https://programmers.co.kr/learn/challenges
문제 설명
풀이
import java.util.Arrays;
class Solution {
public int[] solution(int[] array, int[][] commands) {
int[] answer = new int[commands.length];
int[] number = new int[array.length];
for(int i=0; i<commands.length; i++) {
number = Arrays.copyOfRange(array, commands[i][0]-1, (commands[i][1]));
Arrays.sort(number);
answer[i] = number[commands[i][2]-1];
}
return answer;
}
}
728x90
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 하샤드 수 (0) | 2022.04.24 |
---|---|
[프로그래머스] 최대공약수와 최소공배수 (0) | 2022.04.24 |
[프로그래머스] 콜라츠 추측 (0) | 2022.04.23 |
[프로그래머스] 짝수와 홀수 (0) | 2022.04.23 |
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2022.04.23 |
댓글