Files
LeetCode-Go/leetcode/0047.Permutations-II/47. Permutations II_test.go
2020-08-27 00:58:22 +08:00

53 lines
803 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question47 struct {
para47
ans47
}
// para 是参数
// one 代表第一个参数
type para47 struct {
s []int
}
// ans 是答案
// one 代表第一个答案
type ans47 struct {
one [][]int
}
func Test_Problem47(t *testing.T) {
qs := []question47{
{
para47{[]int{1, 1, 2}},
ans47{[][]int{{1, 1, 2}, {1, 2, 1}, {2, 1, 1}}},
},
{
para47{[]int{1, 2, 2}},
ans47{[][]int{{1, 2, 2}, {2, 2, 1}, {2, 1, 2}}},
},
{
para47{[]int{2, 2, 2}},
ans47{[][]int{{2, 2, 2}}},
},
}
fmt.Printf("------------------------Leetcode Problem 47------------------------\n")
for _, q := range qs {
_, p := q.ans47, q.para47
fmt.Printf("【input】:%v 【output】:%v\n", p, permuteUnique(p.s))
}
fmt.Printf("\n\n\n")
}