189. Rotate Array
Given an array, rotate the array to the right by k steps, where k is non-negative.
环型替换,先求出数列长度和轮转次数的最大公约数m。
然后依次替换数列中的每个值。
1 | //Rotate Array |
189. Rotate Array
Given an array, rotate the array to the right by k steps, where k is non-negative.
环型替换,先求出数列长度和轮转次数的最大公约数m。
然后依次替换数列中的每个值。
1 | //Rotate Array |
189. Rotate Array