12. Integer to Roman Leetcode Python

818 단어 LeetCodepythonarray
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
두 개의 list 를 만들어 로마 숫자 와 순서대로 일치 합 니 다.비교적 특수 한 것 은 두 명의 로마 숫자 가 있다 는 것 이다.
... 에서 오다http://www.cnblogs.com/zuoyuan/p/3779581.html
이런 방법 은 보 는 것 이 가장 알 기 때문에 썼 다.
class Solution:
    # @return a string
    def intToRoman(self, num):
        values=[1000,900,500,400,100,90,50,40,10,9,5,4,1]
        roman=['M','CM','D','CD','C','XC','L','XL','X','IX','V','IV','I']
        list=''
        for i in range(len(values)):
            while num>=values[i]:
                num-=values[i]
                list+=roman[i]
        return list
        

좋은 웹페이지 즐겨찾기