摘要: class Solution: def romanToInt(self, s: str) -> int: Roman= ['I','V','X','L','C','D','M'] Int = [1,5,10,50,100,500,1000] s1= 0 i=0 while i<len(s): if 阅读全文
posted @ 2020-06-15 00:24 SuckChen 阅读(139) 评论(0) 推荐(0)