Leetcode-Python 整數轉羅馬數字

class Solution: def intToRoman(self, num: int) -> str: string = str(num) result = '' length = len(string) for s in range(length): e_num = int(string[s])
相關文章
相關標籤/搜索