일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바
- 데이터모델링과마이닝
- 디자인 패턴
- 자바 공부
- codesandbox
- react
- 장고
- 프로그래머스
- JavaScript
- 백준
- 컴퓨터 네트워크
- 프로그래머스 자바
- NextJS
- react hook
- Java
- useEffect
- design pattern
- 프로그래밍 언어론
- 리액트
- websocket
- vanillaJS
- 리액트 훅
- 프로그래머스 완전탐색
- 코틀린
- useState
- 코딩테스트 고득점 Kit
- 코딩테스트 고득점 Kit 완전탐색
- React JS
- 자바스크립트
- react firebase
Archives
- Today
- Total
기록하는 개발자
[프로그래머스][JAVA] K번 째 수 본문
728x90
import java.util.*;
class Solution {
public int[] solution(int[] array, int[][] commands) {
//주어지는 배열 개수와 같은 길이로 answer 배열 크기 초기화
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;
}
}
Arrays.copyOfRange(array, start, end)
- array의 start부터 end 인덱스 전까지를 배열로 복사하여 반환한다.
- 원본 배열과 같은 타입의 배열을 복사하여 반환하므로 원본 배열은 변하지 않는다.
예시
int[] base_array = {1,2,3,4,5}
int new_array1= Arrays.copyOfRange(base_array, 0, 3);
int new_array2= Arrays.copyOfRange(base_array, 1, 3);
int new_array3= Arrays.copyOfRange(base_array, 2, 5);
for(int i=0; i<new_array1.length ; i++)
System.out.print(new_array1[num]+" ");
for(int i=0; i<new_array2.length ; i++)
System.out.print(new_array2[num]+" ");
for(int i=0; i<new_array3.length ; i++)
System.out.print(new_array3[num]+" ");
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
결과
1 2 3
2 3
3 4 5
출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/courses/30/lessons/42748
728x90
'Algorithm' 카테고리의 다른 글
[프로그래머스][JAVA] 체육복 (0) | 2021.06.14 |
---|---|
[프로그래머스][JAVA] 124 나라의 숫자 (0) | 2021.06.13 |
[프로그래머스][JAVA] 타겟 넘버 (0) | 2021.06.11 |
[프로그래머스][JAVA] 완주하지 못한 선수 (0) | 2021.06.11 |
[프로그래머스][JAVA] 폰켓몬 (0) | 2021.06.11 |