码迷,mamicode.com
首页 > 其他好文 > 详细

268. Missing Number

时间:2020-07-06 12:45:24      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:gnu   tin   int   missing   The   elf   nbsp   for   col   

Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.

给n个不同的数,求0-n这n+1个数里缺了哪个

利用异或运算的性质,可以on处理

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

 

268. Missing Number

标签:gnu   tin   int   missing   The   elf   nbsp   for   col   

原文地址:https://www.cnblogs.com/whatyouthink/p/13254130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!