(Golang)leetcode 1.两数之和
程序员文章站
2022-04-17 17:24:36
...
仅仅作为Go语言入门,感受一下语法的案例。
func twoSum(nums []int, target int) []int {
a:=make([]int,0)
for index1,i := range nums{
for index2,j := range nums[index1+1:]{
if i+j==target{
a=append(a,index1)
a=append(a,index2 + index1 + 1)
goto stop
}
}
}
stop:
return a
}
下一篇: leetcode 1. 两数之和