码迷,mamicode.com
首页 > 其他好文 > 详细

217. Contains Duplicate

时间:2020-07-02 22:01:14      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:col   int   字典   lis   obj   function   element   turn   appears   

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
        """
        d = {}
        for value in nums:
            if value in d:
                return True
            else:
                d[value] = 1
        return False

 

217. Contains Duplicate

标签:col   int   字典   lis   obj   function   element   turn   appears   

原文地址:https://www.cnblogs.com/whatyouthink/p/13226875.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!