Files
LeetCode-Go/leetcode/1640.Check-Array-Formation-Through-Concatenation/1640. Check Array Formation Through Concatenation_test.go
2021-01-02 00:53:28 +08:00

64 lines
1017 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question1640 struct {
para1640
ans1640
}
// para 是参数
// one 代表第一个参数
type para1640 struct {
arr []int
pieces [][]int
}
// ans 是答案
// one 代表第一个答案
type ans1640 struct {
one bool
}
func Test_Problem1640(t *testing.T) {
qs := []question1640{
{
para1640{[]int{85}, [][]int{{85}}},
ans1640{true},
},
{
para1640{[]int{15, 88}, [][]int{{88}, {15}}},
ans1640{true},
},
{
para1640{[]int{49, 18, 16}, [][]int{{16, 18, 49}}},
ans1640{false},
},
{
para1640{[]int{91, 4, 64, 78}, [][]int{{78}, {4, 64}, {91}}},
ans1640{true},
},
{
para1640{[]int{1, 3, 5, 7}, [][]int{{2, 4, 6, 8}}},
ans1640{false},
},
}
fmt.Printf("------------------------Leetcode Problem 1640------------------------\n")
for _, q := range qs {
_, p := q.ans1640, q.para1640
fmt.Printf("【input】:%v 【output】:%v \n", p, canFormArray(p.arr, p.pieces))
}
fmt.Printf("\n\n\n")
}