반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120821
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;
}
}
반응형
'Portpolio > codingtest' 카테고리의 다른 글
프로그래머스 Lv0. 제곱수 판별하기 (0) | 2025.01.08 |
---|---|
Programmers Java Lv0. 양꼬치 (0) | 2025.01.08 |
프로그래머스 lv0. 문자열 돌리기 (1) | 2024.12.16 |
프로그래머스 lv0. 문자열 붙여서 출력하기 (0) | 2024.12.16 |
프로그래머스 lv0. 덧셈식 출력하기 (0) | 2024.12.16 |
댓글