오늘이라도

[5일차][프로그래머스, 120821번, Lv. 0] 배열 뒤집기 본문

개발 공부/코딩테스트

[5일차][프로그래머스, 120821번, Lv. 0] 배열 뒤집기

upcake_ 2022. 12. 21. 10:35
반응형

문제

내 풀이

채점 결과

피드백

import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import java.util.Arrays;

class Solution {
    public int[] solution(int[] numList) {
        List<Integer> list = Arrays.stream(numList).boxed().collect(Collectors.toList());

        Collections.reverse(list);
        return list.stream().mapToInt(Integer::intValue).toArray();
    }
}
반응형