N 번째 원소까지
https://school.programmers.co.kr/learn/courses/30/lessons/181889
- 문제 풀이
1
2
3
4
5
6
7
8
9
10
11
public class Solution {
public int[] solution(int[] num_list, int n) {
int[] result = new int[n];
for (int i = 0; i < n; i++) {
result[i] = num_list[i];
}
return result; // num_list의 첫 번째 원소부터 n번째 원소까지의 모든 원소를 담은 int[] 배열인 result를 반환
}
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.