title | toc | date | tags | top | ||
---|---|---|---|---|---|---|
229. Majority Element II |
false |
2017-10-30 |
|
229 |
Given an integer array of size
Note: The algorithm should run in linear time and in
Example 1:
Input: [3,2,3]
Output: [3]
Example 2:
Input: [1,1,1,3,3,2,2,2]
Output: [1,2]