leetcode_217. 存在重复元素

class Solution:
    def containsDuplicate(self, nums: List[int]) -> bool:
        #if not nums:return False
        d=dict()
        for x in nums:
            if x not in d:
                d[x]=1
            else:
                return True
        return False
posted @   hqzxwm  阅读(31)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示