152. Rotate Array

MediumArray

Given an integer array nums, rotate the array to the right by k steps, where k is non-negative.

Examples

Input: [1,2,3,4,5,6,7] 3

Output: [5,6,7,1,2,3,4]

Explanation: The last 3 elements [5,6,7] move to the front.

Constraints

  • 1 <= nums.length <= 10^5
  • -2^31 <= nums[i] <= 2^31 - 1
  • 0 <= k <= 10^5
Loading...

Run checks all cases above. Submit evaluates all test cases.