[Leetcode]19.把数组排成最小的数
作者:互联网
输入一个非负整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。
示例 1:
输入: [10,2]
输出: "102"
示例 2:
输入: [3,30,34,5,9]
输出: "3033459"
思想:使用Go自带的sort.slice函数实现排序,排序之前将数转换为字符串。
func minNumber(nums []int) string {
var strnum []string
for _,num :=range nums{
strnum = append(strnum,strconv.Itoa(num))
}
sort.Slice(strnum,func(i,j int)bool{
if strnum[i] + strnum[j] < strnum[j] + strnum[i]{
return true
}
return false
})
return strings.Join(strnum,"")
}
注:func Slice(slice interface{}, less func(i, j int) bool) 第一个参数为待排序的数组,第二参数为判断顺序的逻辑
题目:https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof
标签:排成,数组,19,return,int,func,strnum,排序,Leetcode 来源: https://www.cnblogs.com/End1ess/p/15484311.html