Leetcode - 189. Rotate Array
Coding Test

Leetcode - 189. Rotate Array

일시불

문제

Loading...
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

풀이

class Solution:
    def rotate(self, nums: List[int], k: int) -> None:
        """
        Do not return anything, modify nums in-place instead.
        """
        k %= len(nums)
        nums[:k], nums[k:] = nums[len(nums) - k :], nums[: len(nums) - k]

O(n), O(n) solution