Skip to content

Instantly share code, notes, and snippets.

@chirag-shinde
Created April 2, 2020 05:28
Show Gist options
  • Save chirag-shinde/6047568e1dd1a3905a99717bf5dd7408 to your computer and use it in GitHub Desktop.
Save chirag-shinde/6047568e1dd1a3905a99717bf5dd7408 to your computer and use it in GitHub Desktop.
class Solution:
def singleNumber(self, nums: List[int]) -> int:
return reduce( lambda x, y: x ^ y, nums)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment