[프로그래머스] 배열 뒤집기

정선모·2022년 10월 11일
0

프로그래머스

목록 보기
66/91

배열의 역순 배열을 구하는 문제였습니다. 조금 고민했지만 풀이완료했습니다.

class Solution {
    public int[] solution(int[] num_list) {
        int[] answer = new int[num_list.length];
        int count = 0;
        for(int i=num_list.length-1;i>=0;i--) {
            answer[count] = num_list[i];
            count++;
        }
        return answer;
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글