mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 16:26:47 +08:00
Create RomanToDecimal.js
Conversion from Roman numeral system to decimal
This commit is contained in:

committed by
itsvinayak

parent
5f961ba898
commit
c9b3d25c53
38
Conversions/RomanToDecimal.js
Normal file
38
Conversions/RomanToDecimal.js
Normal file
@ -0,0 +1,38 @@
|
||||
var values = {
|
||||
'I':1,
|
||||
'V':5,
|
||||
'X':10,
|
||||
'L':50,
|
||||
'C':100,
|
||||
'D':500,
|
||||
'M':1000
|
||||
};
|
||||
|
||||
function romanToDecimal(romanNumber){
|
||||
let prev = ' ';
|
||||
|
||||
let sum = 0;
|
||||
|
||||
let newPrev = 0;
|
||||
for(let i = romanNumber.length - 1; i >= 0; i--){
|
||||
let c = romanNumber.charAt(i);
|
||||
|
||||
if(prev !== ' '){
|
||||
newPrev = values[prev] > newPrev ? values[prev] : newPrev;
|
||||
}
|
||||
|
||||
let currentNum = values[c];
|
||||
if(currentNum >= newPrev){
|
||||
sum += currentNum;
|
||||
} else {
|
||||
sum -= currentNum;
|
||||
}
|
||||
|
||||
prev = c;
|
||||
}
|
||||
return sum;
|
||||
}
|
||||
|
||||
console.log(romanToDecimal('XXIIVV'));
|
||||
console.log(romanToDecimal('MDCCCIV'));
|
||||
console.log(romanToDecimal('XXIVI'));
|
Reference in New Issue
Block a user