leetcode python 041首个缺失正数
2021-07-16 01:05
阅读:639
标签:定时 leetcode code 时间复杂度 set 正数 lse 时间 python ##限定时间复杂度O(n) leetcode python 041首个缺失正数 标签:定时 leetcode code 时间复杂度 set 正数 lse 时间 python 原文地址:https://www.cnblogs.com/offline-ant/p/9535833.html
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首个缺失正数
文章链接:http://soscw.com/index.php/essay/105813.html
文章标题:leetcode python 041首个缺失正数
文章链接:http://soscw.com/index.php/essay/105813.html
评论
亲,登录后才可以留言!