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

剑指offer python版 数组中出现次数超过一半的数字

时间:2018-10-26 14:24:24      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:false   app   append   hash   else   return   lse   list   end   

def aa(nums):
    if not nums:
        return False
    hashes={}
    ret=[]
    for s in nums:
        hashes[s]=hashes[s]+1 if hashes.get(s) else 1
        if hashes[s] >len(nums)/2:
            ret.append(s)
            
    return list(set(ret))


print(aa([1,2,3,2,2,2,2,2,3,2,3,3,4]))
            

 

剑指offer python版 数组中出现次数超过一半的数字

标签:false   app   append   hash   else   return   lse   list   end   

原文地址:https://www.cnblogs.com/xzm123/p/9855856.html

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