博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
229. Majority Element II
阅读量:5277 次
发布时间:2019-06-14

本文共 438 字,大约阅读时间需要 1 分钟。

class Solution(object):

  def majorityElement(self, nums):
  """
  :type nums: List[int]
  :rtype: int
  """
    n=len(nums)
    a=n/3
    freq={}
    result=[]
    for i in nums:
      if i not in freq:
        freq[i]=1
      else:
        freq[i] +=1
        if freq[i]>a and i not in result:
          result.append(i)
    if result==[] and n<3:
      result=nums
    return result

转载于:https://www.cnblogs.com/ffeng0312/p/9227163.html

你可能感兴趣的文章
height自适应
查看>>
vue学习——项目目录讲解
查看>>
18年9月面试心得
查看>>
Ambari之Get请求的处理流程
查看>>
防火墙1433端口打开即可远程数据库
查看>>
AJAX请求 $.getJson方法的使用
查看>>
SPOJ31428 FIBONOMIAL(斐波那契数列)
查看>>
java各种集合的线程安全
查看>>
Vagrant 手册之网络 - 私有网络 private network
查看>>
又一个新的css流程图示例
查看>>
结构体优先队列排序
查看>>
分词技术简介
查看>>
poj 3258 River Hopscotch(二分+贪心)
查看>>
[POJ 2559]Largest Rectangle in a Histogram 题解(单调栈)
查看>>
VMware
查看>>
深入了解以太坊虚拟机第5部分——一个新合约被创建后会发生什么
查看>>
io多路复用
查看>>
Cache缓存
查看>>
objective-c基础
查看>>
NET中各种加密解密方法
查看>>