[leetcode]Integer to Roman @ Python


原題地址:https://oj.leetcode.com/problems/integer-to-roman/

題意:

Given an integer, convert it to a roman numeral.

Input is guaranteed to be within the range from 1 to 3999.

解題思路:整數(1~3999)到羅馬數字的轉換。字母前置表示減法,例如CM表示M-C=1000-100=900,XL表示L-X=50-10=40。

代碼:

class Solution:
    # @return a string
    def intToRoman(self, num):
        values = [ 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 ]
        numerals = [ "M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I" ]
        list = ''
        for i in range(0, len(values)):
            while num >= values[i]:
                num -= values[i]
                list += numerals[i]
        return list

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM