首页 > 其他 > 详细

【每日一题】13. 罗马数字转整数

时间:2021-05-15 12:31:35      阅读:22      评论:0      收藏:0      [点我收藏+]

https://leetcode-cn.com/problems/roman-to-integer/

import java.util.Map;

class Solution {
    public int romanToInt(String s) {
        int res = 0;
        Map<Character, Integer> map = new HashMap<>();
        map.put(‘I‘, 1);
        map.put(‘V‘, 5);
        map.put(‘X‘, 10);
        map.put(‘L‘, 50);
        map.put(‘C‘, 100);
        map.put(‘D‘, 500);
        map.put(‘M‘, 1000);

        for(int i = 0; i < s.length(); i++){
            int val = map.get(s.charAt(i));
            if(i == s.length() - 1 || map.get(s.charAt(i + 1)) <= map.get(s.charAt(i))){
                res += val;
            }
            else{
                res -= val;
            }
        }
        return res;
    }
}java

【每日一题】13. 罗马数字转整数

原文:https://www.cnblogs.com/realzhaijiayu/p/14770870.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!