mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 08:27:30 +08:00
44 lines
645 B
Go
44 lines
645 B
Go
package leetcode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
type question410 struct {
|
|
para410
|
|
ans410
|
|
}
|
|
|
|
// para 是参数
|
|
// one 代表第一个参数
|
|
type para410 struct {
|
|
nums []int
|
|
m int
|
|
}
|
|
|
|
// ans 是答案
|
|
// one 代表第一个答案
|
|
type ans410 struct {
|
|
one int
|
|
}
|
|
|
|
func Test_Problem410(t *testing.T) {
|
|
|
|
qs := []question410{
|
|
|
|
{
|
|
para410{[]int{7, 2, 5, 10, 8}, 2},
|
|
ans410{18},
|
|
},
|
|
}
|
|
|
|
fmt.Printf("------------------------Leetcode Problem 410------------------------\n")
|
|
|
|
for _, q := range qs {
|
|
_, p := q.ans410, q.para410
|
|
fmt.Printf("【input】:%v 【output】:%v\n", p, splitArray(p.nums, p.m))
|
|
}
|
|
fmt.Printf("\n\n\n")
|
|
}
|