https://leetcode.com/problems/majority-element-ii



Runtime: 130 ms, faster than 12.66% of Python3 online submissions for Majority Element II.
Memory Usage: 15.3 MB, less than 69.32% of Python3 online submissions for Majority Element II.



```python
from collections import Counter

class Solution:
    def majorityElement(self, nums: List[int]) -> List[int]:
        #1:46
        c = Counter(nums)
        #print(c)
        results = []
        threshold = len(nums)/3
        for num, counting in c.items():
            if (counting > threshold):
                if num not in results:
                    results.append(num)
        return results
        #1:53
```