반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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++){
System.out.println("-----------");
int startIndex = commands[i][0]-1;
int endIndex = commands[i][1];
int value = commands[i][2]-1;
int[] ArrayTemp = Arrays.copyOfRange(array,startIndex,endIndex);
Arrays.sort(ArrayTemp);
answer[i] = ArrayTemp[value];
for(int j = 0 ; j<ArrayTemp.length ; j++){
System.out.println(ArrayTemp[j]);
}
}
return answer;
}
}
|
cs |
반응형
'개발 > 코딩' 카테고리의 다른 글
[프로그래밍] 프로그래머스 예제문제 풀어보기 <체육복> 1차 실패 (1) | 2022.05.29 |
---|---|
[프로그래밍] 프로그래머스 예제문제 풀어보기 <모의고사> 성공 (2) | 2022.05.27 |
[프로그래밍] 프로그래머스 예제문제 풀어보기 <완주하지 못한 선수> 1차시도 실패 (2) | 2022.05.23 |
[SPRING] IOC,DI,AOP의 대략적 이해_스프링5(최범균님 저)_1회독 중 (2) | 2022.04.09 |
[프로그래밍] 프로그래머스 예제문제 풀어보기 <없는 숫자 더하기> (성공) (0) | 2022.03.25 |