Files
LeetCode-Go/leetcode/0187.Repeated-DNA-Sequences/187. Repeated DNA Sequences_test.go
2020-08-27 00:58:22 +08:00

43 lines
692 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question187 struct {
para187
ans187
}
// para 是参数
// one 代表第一个参数
type para187 struct {
one string
}
// ans 是答案
// one 代表第一个答案
type ans187 struct {
one []string
}
func Test_Problem187(t *testing.T) {
qs := []question187{
{
para187{"AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT"},
ans187{[]string{"AAAAACCCCC", "CCCCCAAAAA"}},
},
}
fmt.Printf("------------------------Leetcode Problem 187------------------------\n")
for _, q := range qs {
_, p := q.ans187, q.para187
fmt.Printf("【input】:%v 【output】:%v\n", p, findRepeatedDnaSequences(p.one))
}
fmt.Printf("\n\n\n")
}