leetcode1286

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1286相关的知识,希望对你有一定的参考价值。

 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的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-15双周赛-1286-字母组合迭代器

Android glClear 导致 glError 1286

「CF1286A」Garland

poj1286 Necklace of Beads—— Polya定理

HUD——1286 找新朋友

poj1286 polya计数法