zoukankan      html  css  js  c++  java
  • LeetCode【第217题】Contains Duplicate

    题目:

    '''
    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.
    
    Subscribe to see which companies asked this question
    '''
    
    '''
    给定一个整数数组,找到该数组是否包含任何重复。 如果任何值在数组中至少出现两次,则函数应返回true,如果每个元素都不同,则函数应返回false。
    '''

    解法一55ms:

    class Solution(object):
        def containsDuplicate(self, nums):
            """
            :type nums: List[int]
            :rtype: bool
            """
            if len(nums) == 0:
                return False
            else:
                arr = {}
                for i in range(len(nums)):
                    if nums[i] in arr:
                        return True
                    else:
                        arr[nums[i]] = i
                else:
                    return False

    解法二48ms:(一行)

    class Solution(object):
        def containsDuplicate(self, nums):
            """
            :type nums: List[int]
            :rtype: bool
            """
            return len(nums) != len(set(nums))
  • 相关阅读:
    12月11日
    081212 晴
    12月10日
    树莓派项目——基于树莓派的WIFI网络互传系统设计
    IDE
    边缘检测
    Android Launcher桌面应用快捷方式的开发
    android ui事件处理分析
    listview 分析
    ApplicationsIntentReceiver.class
  • 原文地址:https://www.cnblogs.com/zingp/p/6213186.html
Copyright © 2011-2022 走看看