Leetcode练习,Python:第268题:缺失数字:给定一个包含 0, 1, 2, ..., n 中 n 个数的序列,找出 0 .. n 中没有出现在序列中的那个数。

题目:

缺失数字:给定一个包含 0, 1, 2, ..., n 中 n 个数的序列,找出 0 .. n 中没有出现在序列中的那个数。

示例 1:

输入: [3,0,1]

输出: 2

示例 2:

输入: [9,6,4,2,3,5,7,0,1]

输出: 8

说明:

你的算法应具有线性时间复杂度。你能否仅使用额外常数空间来实现?

思路:

思路较简单。

程序:

class Solution:
    def missingNumber(self, nums: List[int]) -> int:
        if not nums:
            return 
        max_num = len(nums)
        auxiliary = []
        index = 0
        result = 0
        while index <= max_num:
            auxiliary.append(index)
            index += 1
        for digit in auxiliary:
            if digit not in nums:
                result = digit
            else:
                continue
        return result