정수가 담긴 배열 numbers와 문자열 direction가 매개변수로 주어집니다. 배열 numbers의 원소를 direction방향으로 한 칸씩 회전시킨 배열을 return하도록 solution 함수를 완성해주세요.
- 입출력 예 #1
numbers 가 [1, 2, 3]이고 direction이 "right" 이므로 오른쪽으로 한 칸씩 회전시킨 [3, 1, 2]를 return합니다.
- 입출력 예 #2
numbers 가 [4, 455, 6, 4, -1, 45, 6]이고 direction이 "left" 이므로 왼쪽으로 한 칸씩 회전시킨 [455, 6, 4, -1, 45, 6, 4]를 return합니다.
class Solution {
public int[] solution(int[] numbers, String direction) {
int[] answer = new int[numbers.length];
if (direction.equals("right")){
//numbers[0]=answer[1]
answer[0]=numbers[numbers.length-1];
int j = 1;
for(int i=0; i<(numbers.length-1); i++) {
answer[j]=numbers[i];
j++;
}
} else {
answer[numbers.length-1]=numbers[0];
int j=0;
for(int i=1; i<(numbers.length); i++) {
answer[j]=numbers[i];
j++;
}
}
return answer;
}
}