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