欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Leetcode PHP题解--D82 13. Roman to Integer

程序员文章站 2022-04-28 19:06:52
...

Leetcode PHP题解--D82 13. Roman to Integer

D82 13. Roman to Integer

题目链接

13. Roman to Integer

题目分析

将给定的罗马数字转换成阿拉伯数字。

思路

用替换法。

要注意,先替换连续出现的那些。例如,比先替换I,要先替换III。(php视频教程

最终代码

<?php
class Solution {    /**
     * @param String $s
     * @return Integer
     */
    function romanToInt($s) {
        $ss = str_replace(['CM','CD','XC','XL','IX','IV','M','D','C','L','X','V','I'],[',900,',',400,',',90,',',40,',',9,',',4,',',1000,',',500,',',100,',',50,',',10,',',5,',',1,'],$s);        return array_sum(array_filter(explode(',', $ss)));
    }
}

以上就是Leetcode PHP题解--D82 13. Roman to Integer的详细内容,更多请关注其它相关文章!

相关标签: php php题解