知识点

异或

思路

由于同一个异或两次为0,所以只要求异或和即能得到只出现一次的数。

时间复杂度 O(n)

AC Code(Python)

from functools import reduce
#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param nums int整型一维数组 
# @return int整型
#
class Solution:
    def singleNumber(self , nums: List[int]) -> int:
        return reduce(lambda x, y : x ^ y, nums)