LeetCode

来源:互联网 发布:视频教程网站源码 编辑:程序博客网 时间:2024/06/05 13:59

Q:
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.

A:

class Solution(object):    def containsDuplicate(self, nums):        """        :type nums: List[int]        :rtype: bool        """        if len(set(nums)) == len(nums):            return False        else:            return True
原创粉丝点击