CyclicRotation
codility
coding
intro
integer 로 구성된 array A가 주어진다. Rotation 은 각 요소가 오론쪽으로 one index 이동되는 것이다. 마지막 element가 첫 element에 위치하게 된다.
문제에서는 Array A와 rotated K times가 주어진다.
N, K 는 integer이며 범위는 [0..100] array의 각 element는 integer이며 range는 [-1000..1000]
이 문제는 정확도에 중점을 두며, 성능은 고려하지 않는다.
point
오랫만에 int[]를 사용해 낯섬. 생각보다 시간 오래 걸렸음… 다음 부터든 시간측정해야겠음.
result
100%