169. 多数元素

class Solution:
    def majorityElement(self, nums):
        c = []
        for i in set(nums):
            c.append(nums.count(int(i)))
        return list(set(nums))[c.index(max(c))]
posted @ 2020-03-13 21:25  HackerEarl  阅读(85)  评论(0编辑  收藏  举报