码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode169 python3 92ms 求众数

时间:2018-08-04 23:19:16      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:lse   python3   def   turn   sel   python   element   not   etc   

class Solution:
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        freq = {}
        for i in nums:
            if i not in freq.keys():
                freq[i] = 1
            else:
                freq[i] += 1
            if freq[i] > len(nums)//2:
                return i
        

leetcode169 python3 92ms 求众数

标签:lse   python3   def   turn   sel   python   element   not   etc   

原文地址:https://www.cnblogs.com/theodoric008/p/9420376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!