Files
LeetCode-Go/leetcode/0685.Redundant-Connection-II/685. Redundant Connection II_test.go
2020-08-27 00:58:22 +08:00

63 lines
1.0 KiB
Go

package leetcode
import (
"fmt"
"testing"
)
type question685 struct {
para685
ans685
}
// para 是参数
// one 代表第一个参数
type para685 struct {
one [][]int
}
// ans 是答案
// one 代表第一个答案
type ans685 struct {
one []int
}
func Test_Problem685(t *testing.T) {
qs := []question685{
{
para685{[][]int{{3, 5}, {1, 3}, {2, 1}, {5, 4}, {2, 3}}},
ans685{[]int{2, 3}},
},
{
para685{[][]int{{4, 2}, {1, 5}, {5, 2}, {5, 3}, {2, 4}}},
ans685{[]int{4, 2}},
},
{
para685{[][]int{{1, 2}, {1, 3}, {2, 3}}},
ans685{[]int{2, 3}},
},
{
para685{[][]int{{1, 2}, {2, 3}, {3, 4}, {1, 4}, {1, 5}}},
ans685{[]int{1, 4}},
},
{
para685{[][]int{{2, 1}, {3, 1}, {4, 2}, {1, 4}}},
ans685{[]int{2, 1}},
},
}
fmt.Printf("------------------------Leetcode Problem 685------------------------\n")
for _, q := range qs {
_, p := q.ans685, q.para685
fmt.Printf("【input】:%v 【output】:%v\n", p, findRedundantDirectedConnection(p.one))
}
fmt.Printf("\n\n\n")
}