欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode初级算法-数组-旋转数组(python)

程序员文章站 2022-03-04 19:04:58
...

旋转数组

题目地址

LeetCode初级算法-数组-旋转数组(python)


 

解答:

class Solution(object):
    def rotate(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: void Do not return anything, modify nums in-place instead.
        """
        assert k>=0,\
        'k must be postive'
        for i in range(k):
            nums.insert(0,nums.pop())

 

相关标签: Leetcode