Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 필기
- 백준
- CSS
- 부스트코스
- 프로그래머스
- HTML
- 이클립스
- 필기후기
- BOJ
- 웹
- 코딩
- 농은면접
- java
- 공부
- 웹개발
- 웹프로그래밍
- 프로그래밍언어
- 중소기업면접
- 건보필기
- 정수내림차순으로배치하기
- 한국재정정보원
- algorithm
- Linux
- 후기
- 수박수박수박수박수?
- 연결요소의개수
- 알고리즘
- 확인문제
- 인강
- 프로그래밍
Archives
- Today
- Total
공부하는 히욤이
[Programmers] K번째 수 본문
Programmers. K번째 수
* 문제의 저작권은 Programmers 및 문제를 만든 사람에게 있습니다.
[문제 접근]
ArrayList를 만들어서 commands의 [i][0] 번째 부터 [i][1]까지 for문을 돌려서 list에 값을 넣어준다.
Colletcions를 사용해서 정렬한 후 answer의 배열에 list의 commands[i][2]-1 의 값을 넣어 줌
[코드]
import java.util.*;
class Solution {
public int[] solution(int[] array, int[][] commands) {
int[] answer = {};
answer = new int[commands.length];
for(int i = 0; i < commands.length; i++){
ArrayList<Integer> list = new ArrayList<>();
for(int j = commands[i][0]; j <= commands[i][1]; j++){
list.add(array[j-1]);
}
Collections.sort(list);
answer[i] = list.get(commands[i][2]-1);
}
return answer;
}
}
'Algorithm > Programmers' 카테고리의 다른 글
[Programmers] 예산 (0) | 2020.11.11 |
---|---|
[Programmers] 수박수박수박수박수박수? (0) | 2020.11.11 |
[Programmers SQL] 역순 정렬하기 (0) | 2020.03.19 |
[Programmers] 제일 작은 수 제거하기 (0) | 2020.02.19 |
[Programmers] 같은 숫자는 싫어 (0) | 2020.02.19 |