217. Contains Duplicate python

来源:互联网 发布:汕头美工有人教招聘 编辑:程序博客网 时间:2024/06/05 16:31

Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

class Solution(object):    def containsDuplicate(self, nums):        """        :type nums: List[int]        :rtype: bool        """        if nums==[]:            return False        d = {}        for x in nums:            if x in d:                d[x]+=1            else:                d[x]=1        for y in d:            if d[y]>1:                return True        return False


0 0
原创粉丝点击