给定一个包含 0, 1, 2, ..., n
中 n 个数的序列,找出 0 .. n 中没有出现在序列中的那个数。
示例 1:
输入: [3,0,1] 输出: 2
示例 2:
输入: [9,6,4,2,3,5,7,0,1] 输出: 8
python 解决方案:
class Solution:
def missingNumber(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
sums=0
for i in range(0,len(nums)+1):
sums+=i
return sums-sum(nums)
结果: