class Solution {
public int[] solution(int[] num_list) {
int[] list = new int[num_list.length];
for(int i=0; i<num_list.length; i++){
list[i] = num_list[num_list.length-1-i];
}
return list;
}
}
import java.util.*;
class Solution {
public int[] solution(int[] num_List) {
List<Integer> list = Arrays.stream(num_List).boxed().collect(Collectors.toList());
Collections.reverse(list);
return list.stream().mapToInt(Integer::intValue).toArray();
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 머쓱이보다 키 큰 사람 (0) | 2023.04.09 |
---|---|
[프로그래머스/자바] 짝수 홀수 개수 (0) | 2023.03.31 |
[프로그래머스/자바] 피자 나눠 먹기(1) (0) | 2023.03.29 |
[프로그래머스/자바] 피자 나눠 먹기 (3) (0) | 2023.03.28 |
[프로그래머스/자바] 문자열 내 마음대로 정렬하기 (0) | 2023.03.15 |