【leetcode】---數組題目【python】

26.Remove duplicate from Sorted Array 思路:題目不允許開闢新空間,且數組排好序。若nums[i]==nums[index-1],增加i去避免複製。當nums[i]!=nums[index-1],此時進行復制,且讓index+1,重複操作直至i達到len(nums) class Solution: def removeDuplicates(self, n
相關文章
相關標籤/搜索