📌  相关文章
📜  即,给定一个包含 n 个整数的数组 a,返回 a 中未出现的最小正整数(大于 0).蟒蛇代码示例

📅  最后修改于: 2022-03-11 14:45:21.447000             🧑  作者: Mango

代码示例1
Testing for the presence of a number in a set is fast in Python so you 
could try something like this:

def minpositive(a):
    A = set(a)
    ans = 1
    while ans in A:
       ans += 1
    return ans