打卡题目:leetcode第136题,只出现一次的数字相似题目:137 【代码】 class Solution: def singleNumber(self, nums: List[int]) -> int: return reduce(lambda x, y: x ^ y, nums)