mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-04 16:12:47 +08:00
53 lines
682 B
Go
53 lines
682 B
Go
package leetcode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
type question258 struct {
|
|
para258
|
|
ans258
|
|
}
|
|
|
|
// para 是参数
|
|
// one 代表第一个参数
|
|
type para258 struct {
|
|
one int
|
|
}
|
|
|
|
// ans 是答案
|
|
// one 代表第一个答案
|
|
type ans258 struct {
|
|
one int
|
|
}
|
|
|
|
func Test_Problem258(t *testing.T) {
|
|
|
|
qs := []question258{
|
|
|
|
{
|
|
para258{38},
|
|
ans258{2},
|
|
},
|
|
|
|
{
|
|
para258{88},
|
|
ans258{7},
|
|
},
|
|
|
|
{
|
|
para258{96},
|
|
ans258{6},
|
|
},
|
|
}
|
|
|
|
fmt.Printf("------------------------Leetcode Problem 258------------------------\n")
|
|
|
|
for _, q := range qs {
|
|
_, p := q.ans258, q.para258
|
|
fmt.Printf("【input】:%v 【output】:%v\n", p, addDigits(p.one))
|
|
}
|
|
fmt.Printf("\n\n\n")
|
|
}
|