Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
Archives
Today
Total
관리 메뉴

forest_moon

배열자르기 본문

알고리즘

배열자르기

rokga 2023. 2. 9. 23:15

import java.util.*;

class Solution {
    public int[] solution(int[] numbers, int num1, int num2) {
        int[] answer = Arrays.copyOfRange(numbers, num1, num2+1);

        return answer;
    }
}

 

 *** Arrays.copyOfRange(원본 배열, 시작 위치, 마지막 위치);

 

 

 

'알고리즘' 카테고리의 다른 글

[hackerrank, SQL]Weather Observation Station 8  (0) 2023.02.13
[hackerrank, SQL]Weather Observation Station 7  (0) 2023.02.13
양꼬치  (0) 2023.02.09
특정 문자 제거하기  (0) 2023.02.09
[hackerrank, SQL]The Report  (0) 2023.02.08