class Solution {
public int[] solution(int[] numbers, int num1, int num2) {
int[] answer = new int[num2 - num1 + 1];
int index = 0;
for(int i=num1; i<=num2; i++){
answer[index] = numbers[i];
index++;
}
return answer;
}
}
import java.util.*;
class Solution {
public int[] solution(int[] numbers, int num1, int num2) {
return Arrays.copyOfRange(numbers, num1, num2 + 1);
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 최댓값 만들기 (0) | 2023.04.12 |
---|---|
[프로그래머스/자바] 중앙값 구하기 (0) | 2023.04.12 |
[프로그래머스/자바] 머쓱이보다 키 큰 사람 (0) | 2023.04.09 |
[프로그래머스/자바] 짝수 홀수 개수 (0) | 2023.03.31 |
[프로그래머스/자바] 배열 뒤집기 (0) | 2023.03.30 |