본문 바로가기
Portpolio/codingtest

프로그래머스 Lv0. 배열 뒤집기

by Peter Choi 2025. 1. 8.
반응형

https://school.programmers.co.kr/learn/courses/30/lessons/120821

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

class Solution {
    public int[] solution(int[] num_list) {
        int[] result = new int[num_list.length];
        
        for (int i = 0; i < num_list.length; i++) {
            result[i] = num_list[num_list.length - i - 1];
        }
        
        return result;
    }
}

 

 

반응형

댓글