3.旋轉數組(Python)

思路 利用數組切片的思想 參考代碼 class Solution: def rotate(self, nums, k): """ :type nums: List[int] :type k: int :rtype: void Do not return anything, modify nums in-place instead. """ mod = k%len(nums) #移動位數對數組長度取
相關文章
相關標籤/搜索