LeetCode 13 Roman to Integer 题解
1.题目:
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
题意:
将罗马字符转换为对应数字
2.解题思路:
转换规则:每个字母对应一个数,小数置于大数后面为加法Ⅵ=6,反之为减法Ⅳ=4。
3.代码
1 |
|
很高兴遇见你~
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
题意:
将罗马字符转换为对应数字
转换规则:每个字母对应一个数,小数置于大数后面为加法Ⅵ=6,反之为减法Ⅳ=4。
1 |
|