Files
LeetCode-Go/leetcode/0453.Minimum-Moves-to-Equal-Array-Elements/453. Minimum Moves to Equal Array Elements_test.go
2020-08-27 00:58:22 +08:00

49 lines
737 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question453 struct {
para453
ans453
}
// para 是参数
// one 代表第一个参数
type para453 struct {
one []int
}
// ans 是答案
// one 代表第一个答案
type ans453 struct {
one int
}
func Test_Problem453(t *testing.T) {
qs := []question453{
{
para453{[]int{4, 3, 2, 7, 8, 2, 3, 1}},
ans453{22},
},
{
para453{[]int{1, 2, 3}},
ans453{3},
},
// 如需多个测试,可以复制上方元素。
}
fmt.Printf("------------------------Leetcode Problem 453------------------------\n")
for _, q := range qs {
_, p := q.ans453, q.para453
fmt.Printf("【input】:%v 【output】:%v\n", p, minMoves(p.one))
}
fmt.Printf("\n\n\n")
}