Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
def findSmallestMissingNumber(lst): st = {*lst} index = 1 while True: if index not in st: return index index += 1 lst = [1, 5, 2, 7, 4, 9, 12] print(findSmallestMissingNumber(lst)) ''' run: 3 '''
def findSmallestMissingNumber(lst): index = 1 while True: if index not in lst: return index index += 1 lst = [1, 5, 2, 7, 4, 9, 12] print(findSmallestMissingNumber(lst)) ''' run: 3 '''