Rotate Array

Medium

Topics
ArrayTwo Pointers

Given an array nums, rotate it to the right by k steps (k passed as target) and return the rotated array.

Example 1

Input:  nums = [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Example 2

Input:  nums = [-1,-100,3,99], k = 2
Output: [3,99,-1,-100]

Constraints

  • 1 <= nums.length <= 10^5
  • 0 <= k <= 10^5
Run ⌘' · Submit ⌘⏎