Given an array of integers, every element appears # twice except for one. Find that single one.

class Solution(object):
def singleNumber(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
xor =
for num in nums:
xor ^= num
return xor
x=Solution()
print(x.singleNumber([,,,,,,]))

输出:

05-11 19:36