Notice
Recent Posts
Recent Comments
Link
forest_moon
배열자르기 본문
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 |