5. 只出現一次的數字(Python)

自己的版本: class Solution: def singleNumber(self, nums): """ :type nums: List[int] :rtype: int """ for i in nums: if nums.count(i)==1: return i class Solution: def singleNumber(self, nums): """ :type nums
相關文章
相關標籤/搜索