169. 多数元素 - 力扣(LeetCode) (leetcode-cn.com)
思路 1:
1. 先对所有元素进行排序
2. 返回位于数组最中间的元素
func majorityElement(nums []int) int { lenth:=len(nums) sort.Ints(nums) return nums[lenth/2] }