【leetcode系列】【py3】【中等】整數轉羅馬數字

題目: 原題鏈接: https://leetcode-cn.com/problems/integer-to-roman/   解題思路: 貪心算法 建立映射表,數字從大到小的計算每個字符的個數   代碼實現: class Solution:     def intToRoman(self, num: int) -> str:         val_map = {1000 : 'M', 900 :
相關文章
相關標籤/搜索