프로그래머스 Lv.0 순서 바꾸기개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 8. 22:16
Table of Contents
<Solution>
class Solution {
public int[] solution(int[] num_list, int n) {
int[] answer = new int [num_list.length];
int idx = 0;
for(int i = n; i < num_list.length; i++) {
answer[idx] = num_list[i];
idx++;
}
for(int i= 0; i < n; i++) {
answer[idx] = num_list[i];
if(idx < num_list.length-1) {
idx++;
} else {
return answer;
}
}
return answer;
}
}
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!