Alwaldend
Docs
Light
Dark
Auto
Docs
Misc
Leetcode submissions
2023-09-11 19:06:00 +0300 MSK
2023-09-11 19:06:00 +0300 MSK
Single Number
Tags:
Generated
Leetcode_submission
Links
https://leetcode.com/submissions/detail/1046655572/
Code
class
Solution
:
def
singleNumber
(self, nums: List[int])
->
int:
return
reduce(xor, nums)