Files
LeetCode-Go/leetcode/0209.Minimum-Size-Subarray-Sum/209. Minimum Size Subarray Sum_test.go
2020-08-27 00:58:22 +08:00

44 lines
647 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question209 struct {
para209
ans209
}
// para 是参数
// one 代表第一个参数
type para209 struct {
s int
one []int
}
// ans 是答案
// one 代表第一个答案
type ans209 struct {
one int
}
func Test_Problem209(t *testing.T) {
qs := []question209{
{
para209{7, []int{2, 3, 1, 2, 4, 3}},
ans209{2},
},
}
fmt.Printf("------------------------Leetcode Problem 209------------------------\n")
for _, q := range qs {
_, p := q.ans209, q.para209
fmt.Printf("【input】:%v 【output】:%v\n", p, minSubArrayLen(p.s, p.one))
}
fmt.Printf("\n\n\n")
}