美文网首页
268. 缺失数字

268. 缺失数字

作者: 好吃红薯 | 来源:发表于2019-05-11 23:54 被阅读0次

    给定一个包含 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:
            return (len(nums)+1)*len(nums) //2 - sum(nums)
    

    相关文章

      网友评论

          本文标题:268. 缺失数字

          本文链接:https://www.haomeiwen.com/subject/zahqaqtx.html