Files
LeetCode-Go/leetcode/1143.Longest-Common-Subsequence/1143. Longest Common Subsequence_test.go
2021-04-04 10:47:45 +08:00

54 lines
775 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question1143 struct {
para1143
ans1143
}
// para 是参数
// one 代表第一个参数
type para1143 struct {
text1 string
text2 string
}
// ans 是答案
// one 代表第一个答案
type ans1143 struct {
one int
}
func Test_Problem1143(t *testing.T) {
qs := []question1143{
{
para1143{"abcde", "ace"},
ans1143{3},
},
{
para1143{"abc", "abc"},
ans1143{3},
},
{
para1143{"abc", "def"},
ans1143{0},
},
}
fmt.Printf("------------------------Leetcode Problem 1143------------------------\n")
for _, q := range qs {
_, p := q.ans1143, q.para1143
fmt.Printf("【input】:%v 【output】:%v\n", p, longestCommonSubsequence(p.text1, p.text2))
}
fmt.Printf("\n\n\n")
}