mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-24 02:14:00 +08:00
43 lines
692 B
Go
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")
|
|
}
|