This commit is contained in:
VicRen
2020-12-03 15:30:04 +08:00
parent 410825768e
commit e16c9db6e6
4 changed files with 114 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ func main() {
}
func RomaToDigit(s string) int {
func romaToDigit(s string) int {
l := len(s)
ret := 0
for i := 0; i < l; i++ {