【Python】【难度:简单】Leetcode 面试题 17.04. 消失的数字

数组nums包含从0到n的所有整数,但其中缺了一个。请编写代码找出那个缺失的整数。你有办法在O(n)时间内完成吗?

注意:本题相对书上原题稍作改动

示例 1:

输入:[3,0,1]
输出:2
 

示例 2:

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/missing-number-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

class Solution(object):
    def missingNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        res=[i for i in range(len(nums)+1)]
        for i in nums:
            res.remove(i)
        return res[0]

 

执行结果:

通过

显示详情

执行用时 :1920 ms, 在所有 Python 提交中击败了8.92%的用户

内存消耗 :13 MB, 在所有 Python 提交中击败了100.00%的用户

你可能感兴趣的:(leetcode)