Files
LeetCode-Go/leetcode/0647.Palindromic-Substrings/647. Palindromic Substrings_test.go
2021-03-28 12:01:36 +08:00

48 lines
653 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question647 struct {
para647
ans647
}
// para 是参数
// one 代表第一个参数
type para647 struct {
s string
}
// ans 是答案
// one 代表第一个答案
type ans647 struct {
one int
}
func Test_Problem647(t *testing.T) {
qs := []question647{
{
para647{"abc"},
ans647{3},
},
{
para647{"aaa"},
ans647{6},
},
}
fmt.Printf("------------------------Leetcode Problem 647------------------------\n")
for _, q := range qs {
_, p := q.ans647, q.para647
fmt.Printf("【input】:%v 【output】:%v\n", p, countSubstrings(p.s))
}
fmt.Printf("\n\n\n")
}