Files
LeetCode-Go/leetcode/0434.Number-of-Segments-in-a-String/434.Number of Segments in a String_test.go
2021-10-07 19:28:26 +08:00

56 lines
716 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question434 struct {
para434
ans434
}
// s 是参数
type para434 struct {
s string
}
// ans 是答案
type ans434 struct {
ans int
}
func Test_Problem434(t *testing.T) {
qs := []question434{
{
para434{"Hello, my name is John"},
ans434{5},
},
{
para434{"Hello"},
ans434{1},
},
{
para434{"love live! mu'sic forever"},
ans434{4},
},
{
para434{""},
ans434{0},
},
}
fmt.Printf("------------------------Leetcode Problem 434------------------------\n")
for _, q := range qs {
_, p := q.ans434, q.para434
fmt.Printf("【input】:%v 【output】:%v\n", p, countSegments(p.s))
}
fmt.Printf("\n\n\n")
}