class Solution(object): def firstMissingPositive(self, nums): """ :type nums: List[int] :rtype: int """ if nums==[]: return 1 for i in nums: if i<=0: nums.remove(i) if nums==[]: return 1 for i in range(1,len(nums)+1): if i not in nums: return i return len(nums)+1
执行用时 :24 ms, 在所有 python 提交中击败了90.19%的用户
内存消耗 :11.8 MB, 在所有 python 提交中击败了26.09%的用户
——2019.10.14
原文地址:https://www.cnblogs.com/taoyuxin/p/11670778.html
时间: 2024-10-05 03:10:14