LeetCode Majority Element

来源:互联网 发布:网络犯罪调查第三季mp4 编辑:程序博客网 时间:2024/05/16 12:21

Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.

You may assume that the array is non-empty and the majority element always exist in the array.

class Solution(object):    def majorityElement(self, nums):        """        :type nums: list[int]        :rtype: int        """        nums.sort()        return nums[len(nums)/2]
0 0