순서 바꾸기
날짜 | 2023-10-27 |
사용 언어 | Java |
문제 유형 | 반복문, 배열, IF문 |
정답률 | 89% |
문제 URL | https://school.programmers.co.kr/learn/courses/30/lessons/181891 |
문제 #
문제 설명 #
정수 리스트 num_list
와 정수 n
이 주어질 때, num_list
를 n
번째 원소 이후의 원소들과 n
번째까지의 원소들로 나눠 n
번째 원소 이후의 원소들을 n
번째까지의 원소들 앞에 붙인 리스트를 return하도록 solution 함수를 완성해주세요.
제한사항 #
- 2 ≤
num_list
의 길이 ≤ 30 - 1 ≤
num_list
의 원소 ≤ 9 - 1 ≤
n
≤num_list
의 길이
나의 풀이 #
class Solution {
public int[] solution(int[] num_list, int n) {
int[] answer = new int[num_list.length];
int cnt = 0;
for(int i = n; i<num_list.length; i++) {
answer[cnt] = num_list[i];
cnt++;
}
for(int i = 0; i<n; i++) {
answer[cnt] = num_list[i];
cnt++;
}
return answer;
}
}
다른 사람의 풀이 #
class Solution {
public int[] solution(int[] num_list, int n) {
int[] answer = new int[num_list.length];
for (int i=0; i<num_list.length; i++){
if (n == num_list.length) {
n = 0;
}
answer[i] = num_list[n];
n++;
}
return answer;
}
}