LeetCode - 189. 旋转数组
LeetCode - 189. Rotate Array
前言本文记录 LeetCode - 189. 旋转数组(Rotate Array) 问题。
问题描述给定一个数组,将数组中的元素向右移动 k 个位置,其中 k 为非负数。
Input: [1,2,3,4,5,6,7] and k = 3
Output: [5,6,7,1,2,3,4]
Explanation:
rotate 1 steps to the right: [7,1,2,3,4,5......