Files
LeetCode-Go/leetcode/0500.Keyboard-Row/500. Keyboard Row_test.go
2020-08-27 00:58:22 +08:00

43 lines
680 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question500 struct {
para500
ans500
}
// para 是参数
// one 代表第一个参数
type para500 struct {
one []string
}
// ans 是答案
// one 代表第一个答案
type ans500 struct {
one []string
}
func Test_Problem500(t *testing.T) {
qs := []question500{
{
para500{[]string{"Hello", "Alaska", "Dad", "Peace"}},
ans500{[]string{"Alaska", "Dad"}},
},
}
fmt.Printf("------------------------Leetcode Problem 500------------------------\n")
for _, q := range qs {
_, p := q.ans500, q.para500
fmt.Printf("【input】:%v 【output】:%v\n", p, findWords500(p.one))
}
fmt.Printf("\n\n\n")
}