Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Solution

class Solution:
    def singleNumber(self, nums):
        val = 0
        for x in nums:
            val = val ^ x
        return val