Files
LeetCode-Go/leetcode/0377.Combination-Sum-IV/377. Combination Sum IV_test.go
2021-04-24 21:04:28 +08:00

49 lines
697 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question377 struct {
para377
ans377
}
// para 是参数
// one 代表第一个参数
type para377 struct {
n []int
k int
}
// ans 是答案
// one 代表第一个答案
type ans377 struct {
one int
}
func Test_Problem377(t *testing.T) {
qs := []question377{
{
para377{[]int{1, 2, 3}, 4},
ans377{7},
},
{
para377{[]int{1, 2, 3}, 32},
ans377{181997601},
},
}
fmt.Printf("------------------------Leetcode Problem 377------------------------\n")
for _, q := range qs {
_, p := q.ans377, q.para377
fmt.Printf("【input】:%v 【output】:%v\n", p, combinationSum4(p.n, p.k))
}
fmt.Printf("\n\n\n")
}