码迷,mamicode.com
首页 > 其他好文 > 详细

169. Majority Element

时间:2018-06-26 11:08:01      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:element   list   class   self   lis   solution   elf   not   sel   

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

169. Majority Element

标签:element   list   class   self   lis   solution   elf   not   sel   

原文地址:https://www.cnblogs.com/ffeng0312/p/9227162.html

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