leetcode python 041首个缺失正数

Posted 蚂蚁不在线

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode python 041首个缺失正数相关的知识,希望对你有一定的参考价值。

##限定时间复杂度O(n)
num=[0,5,3,1,2,-2,4,8,5,6]
num=set(num)
d=1
for i in range(1,len(num)+1):
    if d in num:
        d+=1
    else:
        break
print(d)

以上是关于leetcode python 041首个缺失正数的主要内容,如果未能解决你的问题,请参考以下文章

Python描述 LeetCode 41. 缺失的第一个正数

LeetCode:缺失的第一个正数41

[LeetCode 41.] 缺失的第一个正数

[leetcode] 41. 缺失的第一个正数

leetcode 41 缺失的第一个正数

Leetcode-41. 缺失的第一个正数