Day38.求众数

题目描述:

给定一个大小为 n 的数组,找到其中的众数。众数是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。
你可以假设数组是非空的,并且给定的数组总是存在众数。

示例1:

输入: [3,2,3]
输出: 3

示例2:

输入: [2,2,1,1,1,2,2]
输出: 2

代码如下:

class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        dic = {}
        length = len(nums)
        for each in nums:
            dic[each] = dic.get(each,0)+1
            if dic.get(each,0) > length/2:
                return each

在这里插入图片描述

发布了71 篇原创文章 · 获赞 4 · 访问量 1097

猜你喜欢

转载自blog.csdn.net/qq_44957388/article/details/101752976