leetcode 169.多数元素(python) 程序员文章站 2024-03-22 14:22:10 ... leetcode 169.多数元素(python) 给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [3,2,3] 输出: 3 示例 2: 输入: [2,2,1,1,1,2,2] 输出: 2 排序找中间数 class Solution(object): def majorityElement(self, nums): # 排序找中间数 nums.sort() return nums[len(nums) // 2] 相关标签: leetcode python leetcode 上一篇: leetcode-数组-简单-多数元素 下一篇: web前端 -- Day2基础知识 推荐阅读 LeetCode 169:多数元素 LeetCode 算法面试汇总 多数元素 【LeetCode刷题】169. 多数元素 169、多数元素(python) leetcode-数组-简单-多数元素 LeetCode第169题:多数元素 leetcode-169 多数元素 Python LeetCode小算法记录(十四)多数元素 leetcode 169.多数元素(python) JavaScript算法系列--leetcode多数元素