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