Files
LeetCode-Go/leetcode/0347.Top-K-Frequent-Elements/347. Top K Frequent Elements_test.go
2020-08-27 00:58:22 +08:00

49 lines
715 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question347 struct {
para347
ans347
}
// para 是参数
// one 代表第一个参数
type para347 struct {
one []int
two int
}
// ans 是答案
// one 代表第一个答案
type ans347 struct {
one []int
}
func Test_Problem347(t *testing.T) {
qs := []question347{
{
para347{[]int{1, 1, 1, 2, 2, 3}, 2},
ans347{[]int{1, 2}},
},
{
para347{[]int{1}, 1},
ans347{[]int{1}},
},
}
fmt.Printf("------------------------Leetcode Problem 347------------------------\n")
for _, q := range qs {
_, p := q.ans347, q.para347
fmt.Printf("【input】:%v 【output】:%v\n", p, topKFrequent(p.one, p.two))
}
fmt.Printf("\n\n\n")
}