-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
28 lines (24 loc) Β· 912 Bytes
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package Array.CyclicRotation;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
Solution s = new Solution();
System.out.println(Arrays.toString(s.solution(new int[]{3, 8, 9, 7, 6}, 3)));
System.out.println(Arrays.toString(s.solution(new int[]{1, 2, 3, 4}, 4)));
System.out.println(Arrays.toString(s.solution(new int[]{1, 2, 3, 4}, 5)));
System.out.println(Arrays.toString(s.solution(new int[]{0, 0, 0}, 1)));
System.out.println(Arrays.toString(s.solution(new int[]{}, 5)));
}
}
class Solution {
public int[] solution(int[] A, int K) {
int[] newArr = new int[A.length];
if (A.length > 0) K %= A.length;
int cursor = K;
for (int i = 0; i < A.length; i++) {
if (i == A.length - K) cursor = 0;
newArr[cursor++] = A[i];
}
return newArr;
}
}