mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 00:25:22 +08:00
70 lines
1.1 KiB
Go
70 lines
1.1 KiB
Go
package leetcode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
type question349 struct {
|
|
para349
|
|
ans349
|
|
}
|
|
|
|
// para 是参数
|
|
// one 代表第一个参数
|
|
type para349 struct {
|
|
one []int
|
|
another []int
|
|
}
|
|
|
|
// ans 是答案
|
|
// one 代表第一个答案
|
|
type ans349 struct {
|
|
one []int
|
|
}
|
|
|
|
func Test_Problem349(t *testing.T) {
|
|
|
|
qs := []question349{
|
|
|
|
{
|
|
para349{[]int{}, []int{}},
|
|
ans349{[]int{}},
|
|
},
|
|
|
|
{
|
|
para349{[]int{1}, []int{1}},
|
|
ans349{[]int{1}},
|
|
},
|
|
|
|
{
|
|
para349{[]int{1, 2, 3, 4}, []int{1, 2, 3, 4}},
|
|
ans349{[]int{1, 2, 3, 4}},
|
|
},
|
|
|
|
{
|
|
para349{[]int{1, 2, 2, 1}, []int{2, 2}},
|
|
ans349{[]int{2}},
|
|
},
|
|
|
|
{
|
|
para349{[]int{1}, []int{9, 9, 9, 9, 9}},
|
|
ans349{[]int{}},
|
|
},
|
|
|
|
{
|
|
para349{[]int{4, 9, 5}, []int{9, 4, 9, 8, 4}},
|
|
ans349{[]int{9, 4}},
|
|
},
|
|
// 如需多个测试,可以复制上方元素。
|
|
}
|
|
|
|
fmt.Printf("------------------------Leetcode Problem 349------------------------\n")
|
|
|
|
for _, q := range qs {
|
|
_, p := q.ans349, q.para349
|
|
fmt.Printf("【input】:%v 【output】:%v\n", p, intersection(p.one, p.another))
|
|
}
|
|
fmt.Printf("\n\n\n")
|
|
}
|