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

leetcode1286

时间:2019-12-15 10:53:07      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:ring   mos   lin   style   solution   div   color   item   leetcode   

 1 class Solution:
 2     def findSpecialInteger(self, arr: List[int]) -> int:
 3         n = len(arr)
 4         dic = {}
 5         for i in range(n):
 6             if arr[i] not in dic:
 7                 dic[arr[i]] = 1
 8             else:
 9                 dic[arr[i]] += 1
10         mostvalue = 0
11         mosttime = 0
12         for k,v in dic.items():
13             if v >= mosttime:
14                 mosttime = v
15                 mostvalue = k
16         return mostvalue

1287. Element Appearing More Than 25% In Sorted Array

leetcode1286

标签:ring   mos   lin   style   solution   div   color   item   leetcode   

原文地址:https://www.cnblogs.com/asenyang/p/12041714.html

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