数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
示例 1:
输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2
限制:
- 1 <= 数组长度 <= 50000
Python 解答:
class Solution:
def majorityElement(self, nums: List[int]) -> int:
adic = {}
length = len(nums)
for item in nums:
if item not in adic.keys():
adic[item] = 1
else:
adic[item] += 1
if adic[item] > length//2:
return item
留言