LeetCode #Roman To Integer#





只要做過之前的那個Integer To Roman, 這個就不會很難啦~ 掌握轉換規律, 建個table就OK了


"""
Programmer  :   EOF
Date        :   2015.04.11
File        :   rti.py
E-mail      :   [email protected]
"""

class Solution:
    # @return an integer
    def romanToInt(self, s):
        base = {"I":1,   "IV":4,   "V":5,   "IX":9 , \
                "X":10,  "XL":40,  "L":50,  "XC":90, \
                "C":100, "CD":400, "D":500, "CM":900,\
                "M":1000}

        ret_num = 0
        length = len(s)
        i      = 0
        while i < length :
            if s[i:i+2] in base:
                ret_num += base[s[ i:i+2] ]
                i += 2
            elif s[i] in base:
                ret_num += base[s[i]]
                i += 1

        return ret_num

#----------- just for testing -----------

s = Solution()
print s.romanToInt("MCXLXC")







發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章