摘要: class Solution: def romanToInt(self, s: str) -> int: # 将各个字母表示的数字存入字典中 numeral_map = {"I":1,"V":5,"X":10,"L":50,"C":100,"D":500,"M":1000} # 存储罗马字母转成的整数值 result = 0... 阅读全文
posted @ 2019-08-14 20:57 我叫郑小白 阅读(146) 评论(0) 推荐(0) 编辑