leetcode Contains Duplicate python

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:
    # @param {integer[]} nums
    # @return {boolean}
    def containsDuplicate(self, nums):
        if len(nums) <= 0:
            return False
        arrCheck = {}
        for i in nums:
            if arrCheck.has_key( i ):
                return True
            arrCheck[i] = i
        return False
原文地址:https://www.cnblogs.com/allenhaozi/p/4728805.html