Files
LeetCode-Go/leetcode/0013.Roman-to-Integer/13. Roman to Integer_test.go
2020-08-27 00:58:22 +08:00

68 lines
820 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question13 struct {
para13
ans13
}
// para 是参数
// one 代表第一个参数
type para13 struct {
one string
}
// ans 是答案
// one 代表第一个答案
type ans13 struct {
one int
}
func Test_Problem13(t *testing.T) {
qs := []question13{
{
para13{"III"},
ans13{3},
},
{
para13{"IV"},
ans13{4},
},
{
para13{"IX"},
ans13{9},
},
{
para13{"LVIII"},
ans13{58},
},
{
para13{"MCMXCIV"},
ans13{1994},
},
{
para13{"MCMXICIVI"},
ans13{2014},
},
}
fmt.Printf("------------------------Leetcode Problem 13------------------------\n")
for _, q := range qs {
_, p := q.ans13, q.para13
fmt.Printf("【input】:%v 【output】:%v\n", p.one, romanToInt(p.one))
}
fmt.Printf("\n\n\n")
}