博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 13: Roman to Integer
阅读量:4207 次
发布时间:2019-05-26

本文共 2302 字,大约阅读时间需要 7 分钟。

题目:

Roman numerals are represented by seven different symbols: IVXLCD and M.

Symbol       ValueI             1V             5X             10L             50C             100D             500M             1000

For example, two is written as II in Roman numeral, just two one's added together. Twelve is written as, XII, which is simply X + II. The number twenty seven is written as XXVII, which is XX + V + II.

Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four. The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:

  • I can be placed before V (5) and X (10) to make 4 and 9. 
  • X can be placed before L (50) and C (100) to make 40 and 90. 
  • C can be placed before D (500) and M (1000) to make 400 and 900.

Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999.

Example 1:

Input: "III"Output: 3

Example 2:

Input: "IV"Output: 4

Example 3:

Input: "IX"Output: 9

Example 4:

Input: "LVIII"Output: 58Explanation: L = 50, V= 5, III = 3.

Example 5:

Input: "MCMXCIV"Output: 1994Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.

解答一:

这是第二次的答案faster than 43%, 还凑合

class Solution:    def romanToInt(self, s):        """        :type s: str        :rtype: int        """        d1 = {            'I':1,            'V':5,            'X':10,            'L':50,            'C':100,            'D':500,            'M':1000        }        length = len(s)        result = 0        for i in range(length):            if i == length-1:                result += d1[s[i]]                return result            if d1[s[i]]

解答二:

这是第一次的解答,leetcode数据显示属于贼慢的那种faster than 2%,哭T_T

class Solution:    def romanToInt(self, s):        """        :type s: str        :rtype: int        """        d1 = {            'I':1,            'V':5,            'X':10,            'L':50,            'C':100,            'D':500,            'M':1000        }        length = len(s)        result = 0        for i in range(length):            if i == length-1:                result += d1[s[i]]                return result            if d1[s[i]]

 

转载地址:http://vwgli.baihongyu.com/

你可能感兴趣的文章
c++使用宏检测类是否包含某个函数或者变量属性
查看>>
CSS之Multi-columns的column-gap和column-rule
查看>>
CSS之Multi-columns的跨列
查看>>
CSS之浮动(一)
查看>>
CSS之浮动(二)
查看>>
记腾讯互娱网站布局(1)
查看>>
记腾讯互娱网站布局(2)
查看>>
记腾讯互娱网站布局(3)
查看>>
大小不固定的图片和多行文字的垂直水平居中
查看>>
display:table-cell的集中应用
查看>>
display:table-cell自适应布局下连续单词字符换行
查看>>
0115 springboot template方式操作mongodb
查看>>
0116 spring的webFlux
查看>>
解决 Asp.net 中,url传参乱码 方法之一:(UrlDecode)
查看>>
pdf的转换网址:
查看>>
c++设计模式之三~抽象工厂模式
查看>>
c++设计模式之单例模式
查看>>
c++设计模式之建造者模式
查看>>
c++设计模式之原型模式
查看>>
c++设计模式之适配器模式
查看>>