gpt4 book ai didi

戈朗 : concatination array of int

转载 作者:数据小太阳 更新时间:2023-10-29 03:41:03 26 4
gpt4 key购买 nike

初始数据:

rawdata := []int{17, 23, 100500}

结果:

result := convert(rawdata)
expected := "1723100500"

我应该用 convert() 做什么?我有:

func convert(param []int) string {
data := strings.Join(param)
return data
}

但是不行

最佳答案

您应该使用函数 strconv.Itoafmt.Sprintf("%d",a)

像这样

S := ""
for _,i := range intarray {
S = S + strconv.Itoa( i )
}

关于戈朗 : concatination array of int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48141744/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com