mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 08:27:30 +08:00
56 lines
716 B
Go
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")
|
|
}
|