其他分享
首页 > 其他分享> > Leetcode 169. 多数元素

Leetcode 169. 多数元素

作者:互联网

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