Files
LeetCode-Go/leetcode/0878.Nth-Magical-Number/878. Nth Magical Number_test.go
2020-08-27 00:58:22 +08:00

65 lines
840 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question878 struct {
para878
ans878
}
// para 是参数
// one 代表第一个参数
type para878 struct {
n int
a int
b int
}
// ans 是答案
// one 代表第一个答案
type ans878 struct {
one int
}
func Test_Problem878(t *testing.T) {
qs := []question878{
{
para878{1, 2, 3},
ans878{2},
},
{
para878{4, 2, 3},
ans878{6},
},
{
para878{5, 2, 4},
ans878{10},
},
{
para878{3, 6, 4},
ans878{8},
},
{
para878{1000000000, 40000, 40000},
ans878{999720007},
},
}
fmt.Printf("------------------------Leetcode Problem 878------------------------\n")
for _, q := range qs {
_, p := q.ans878, q.para878
fmt.Printf("【input】:%v 【output】:%v\n", p, nthMagicalNumber(p.n, p.a, p.b))
}
fmt.Printf("\n\n\n")
}