Leetcode 136. 只出现一次的数字(Python3)

136. 只出现一次的数字

给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。

说明:

你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?

示例 1:

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

示例 2:

输入: [4,1,2,1,2]
输出: 4

代码1:

class Solution:
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if not nums:return 0
        d1 = set()
        d2 = set()
        for i in nums:
            if i not in d1:
                d1.add(i)
            else:
                d2.add(i)
        return  list(d1.difference(d2))[0]

异或运算符代码2:

class Solution:
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        a = 0
        for i in nums:
            a = a ^ i
        return a

猜你喜欢

转载自blog.csdn.net/qq_38575545/article/details/85836816