mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 00:25:22 +08:00
55 lines
779 B
Go
55 lines
779 B
Go
package leetcode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
type question97 struct {
|
|
para97
|
|
ans97
|
|
}
|
|
|
|
// para 是参数
|
|
// one 代表第一个参数
|
|
type para97 struct {
|
|
s1 string
|
|
s2 string
|
|
s3 string
|
|
}
|
|
|
|
// ans 是答案
|
|
// one 代表第一个答案
|
|
type ans97 struct {
|
|
one bool
|
|
}
|
|
|
|
func Test_Problem97(t *testing.T) {
|
|
|
|
qs := []question97{
|
|
|
|
{
|
|
para97{"aabcc", "dbbca", "aadbbcbcac"},
|
|
ans97{true},
|
|
},
|
|
|
|
{
|
|
para97{"aabcc", "dbbca", "aadbbbaccc"},
|
|
ans97{false},
|
|
},
|
|
|
|
{
|
|
para97{"", "", ""},
|
|
ans97{true},
|
|
},
|
|
}
|
|
|
|
fmt.Printf("------------------------Leetcode Problem 97------------------------\n")
|
|
|
|
for _, q := range qs {
|
|
_, p := q.ans97, q.para97
|
|
fmt.Printf("【input】:%v 【output】:%v\n", p, isInterleave(p.s1, p.s2, p.s3))
|
|
}
|
|
fmt.Printf("\n\n\n")
|
|
}
|