• LeetCode刷题---罗马数字转整数


    在这里插入图片描述

    class Solution {
        public int romanToInt(String str) {
            //核心就是如果前一个数比后一个数小,则减去前一个数,相反,则相加1
            String[] s=str.split("");
            Map map=new HashMap<>();
            map.put("I", 1);
            map.put("IV", 4);
            map.put("V", 5);
            map.put("IX", 9);
            map.put("X", 10);
            map.put("XL", 40);
            map.put("L", 50);
            map.put("XC", 90);
            map.put("C", 100);
            map.put("CD", 400);
            map.put("D", 500);
            map.put("CM", 900);
            map.put("M", 1000);
    
            int sum=0;
            
            
            for(int i=0;i
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
  • 相关阅读:
    行为型:发布订阅模式
    python 应用 之 转图片格式webp
    ERR_PNPM_LINKING_FAILED Error: EPERM: operation not permitted, rename
    MyBatis-Plus 框架 2022-8-2
    多种方式计算当天与另一天的间隔天数 Java实现
    TypeScript后端http请求
    内存完整性已关闭,你的设备可能易受攻击已解决之处理方法
    深入了解C#泛型
    学习DiscoDiffusion的最基础操作
    【算法面试必刷Java版十】两个链表的第一个公共结点
  • 原文地址:https://blog.csdn.net/weixin_47109902/article/details/133911855