【Python】【难度:简单】Leetcode 面试题39. 数组中出现次数超过一半的数字

数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

 

你可以假设数组是非空的,并且给定的数组总是存在多数元素。

 

示例 1:

输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2
 

限制:

1 <= 数组长度 <= 50000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        dict={}
        for i in nums:
            dict.setdefault(i,0)
            dict[i]+=1
        for k,v in dict.items():
            if v>len(nums)/2:
                return k

 

 

执行结果:

通过

显示详情

执行用时 :32 ms, 在所有 Python 提交中击败了73.29%的用户

内存消耗 :14 MB, 在所有 Python 提交中击败了100.00%的用户

你可能感兴趣的:(leetcode)