import java.util.Arrays;
class Solution {
public int[] solution(int[] numbers, int num1, int num2) {
int[] answer = {};
answer = Arrays.copyOfRange(numbers,num1, num2+1);
return answer;
}
}
배열 자르기는 copyOfRange로 하면 편하다
728x90
'Java' 카테고리의 다른 글
자바의 예외 (0) | 2024.02.14 |
---|---|
[프로그래머스] Lv2. 뒤에 있는 큰 수 찾기 자바 (0) | 2024.01.28 |
[프로그래머스] 특정 문자 제거 (0) | 2023.11.05 |
[프로그래머스] 문자 반복 출력 (0) | 2023.11.05 |
[프로그래머스] 짝수 홀수 개수 (0) | 2023.11.05 |