码迷,mamicode.com
首页 > 编程语言 > 详细

189. 旋转数组

时间:2020-04-21 23:48:44      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:mil   soft   ros   代码   技术   inf   image   mod   com   

技术图片

 

 

 技术图片

 

 

 代码一:

1 class Solution(object):
2     def rotate(self, nums, k):
3         """
4         :type nums: List[int]
5         :type k: int
6         :rtype: None Do not return anything, modify nums in-place instead.
7         """
8         nums[:] = nums[-k%len(nums):] + nums[0:-k%len(nums)]

代码二:

 1 class Solution(object):
 2     def rotate(self, nums, k):
 3         """
 4         :type nums: List[int]
 5         :type k: int
 6         :rtype: None Do not return anything, modify nums in-place instead.
 7         """
 8         while k > 0:
 9             nums.insert(0, nums.pop())
10             k -= 1

 

189. 旋转数组

标签:mil   soft   ros   代码   技术   inf   image   mod   com   

原文地址:https://www.cnblogs.com/panweiwei/p/12748831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!