Leetcode 13. 羅馬數字轉整數

按照羅馬數字規則 對每一位:其右邊大,減去這個數;其右邊小,加上這個數 最後再加上最右邊的數web class Solution { public: int romanToInt(string s) { map<char, int> A; int ans = 0; A['I'] = 1, A['V'] = 5, A['X'] = 10, A[
相關文章
相關標籤/搜索