4.存在重複(Python)

方法一: 思路 利用count()計數方法來判斷 參考代碼 class Solution: def containsDuplicate(self, nums): """ :type nums: List[int] :rtype: bool """ for i in nums: if nums.count(i)>=2: return True return False class Solution:
相關文章
相關標籤/搜索