mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 20:20:56 +08:00
Merge pull request #1407 from Pa1sathvik/master
Update RomanToInteger.java
This commit is contained in:
@ -29,6 +29,7 @@ public class RomanToInteger {
|
|||||||
*/
|
*/
|
||||||
public static int romanToInt(String A) {
|
public static int romanToInt(String A) {
|
||||||
|
|
||||||
|
A = A.toUpperCase();
|
||||||
char prev = ' ';
|
char prev = ' ';
|
||||||
|
|
||||||
int sum = 0;
|
int sum = 0;
|
||||||
|
Reference in New Issue
Block a user