当前位置:Gxlcms > PHP教程 > LeetcodePHP题解--D8213.RomantoInteger

LeetcodePHP题解--D8213.RomantoInteger

时间:2021-07-01 10:21:17 帮助过:16人阅读

未标题-15.png

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的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行