mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-06 17:44:10 +08:00
49 lines
712 B
Go
49 lines
712 B
Go
package leetcode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
type question81 struct {
|
|
para81
|
|
ans81
|
|
}
|
|
|
|
// para 是参数
|
|
// one 代表第一个参数
|
|
type para81 struct {
|
|
nums []int
|
|
target int
|
|
}
|
|
|
|
// ans 是答案
|
|
// one 代表第一个答案
|
|
type ans81 struct {
|
|
one bool
|
|
}
|
|
|
|
func Test_Problem81(t *testing.T) {
|
|
|
|
qs := []question81{
|
|
|
|
{
|
|
para81{[]int{2, 5, 6, 0, 0, 1, 2}, 0},
|
|
ans81{true},
|
|
},
|
|
|
|
{
|
|
para81{[]int{2, 5, 6, 0, 0, 1, 2}, 3},
|
|
ans81{false},
|
|
},
|
|
}
|
|
|
|
fmt.Printf("------------------------Leetcode Problem 81------------------------\n")
|
|
|
|
for _, q := range qs {
|
|
_, p := q.ans81, q.para81
|
|
fmt.Printf("【input】:%v 【output】:%v\n", p, search(p.nums, p.target))
|
|
}
|
|
fmt.Printf("\n\n\n")
|
|
}
|