프로그래머스(Level 0) - 🔙 배열 뒤집기

Gammi·2022년 12월 21일
0

프로그래머스

목록 보기
14/69

✔ 문제





✔ 풀이


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개의 댓글