摘要: 修改请求参数以后: body := fmt.Sprintf(`{"EventCategory": "%s","TicketNum": "%s"}`, eventcategory, ticketnum) 阅读全文
posted @ 2020-04-03 14:00 small_lei_it 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func main() { nums := []int{1, 5, 7, 8, 9} target := 10 solutions(nums, target) } func solutions(nums []int, target int) 阅读全文
posted @ 2020-04-03 09:42 small_lei_it 阅读(930) 评论(0) 推荐(0) 编辑