[LeetCode] Problem 189 - Rotate Array
Given an array, rotate the array to the right by k steps, where k is non-negative.
ExampleNo.1Input: [1,2,3,4,5,6,7] and k = 3
Output: [5,6,7,1,2,3,4]
...