美文网首页
[Leetcode] 169. 多数元素

[Leetcode] 169. 多数元素

作者: 丶噗噗噗噗噗 | 来源:发表于2020-04-29 10:34 被阅读0次

    169. 多数元素

    来源: 169. 多数元素

    1. 解题思路

    因为多数元素出现次数大于 ⌊ n/2 ⌋, 所以对数组进行排序然后取位于 n/2 的那个元素

    2. 代码

    class Solution:
        def majorityElement(self, nums: List[int]) -> int:
            nums.sort()
            return nums[len(nums)//2]
    

    相关文章

      网友评论

          本文标题:[Leetcode] 169. 多数元素

          本文链接:https://www.haomeiwen.com/subject/uvqgwhtx.html