[LeetCode] Roman to Integer - JavaScript
👩🏻💻 문제
👩🏻💻 풀이
var romanToInt = function(s) {
const map = { 'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000};
let result = 0;
for(let i = 0; i < s.length; i++) {
const cur = map[s[i]];
const next = map[s[i+1]];
// 로마 숫자 계산 규칙
if(cur < next) {
result -= cur;
} else {
result += cur;
}
}
return result;
};
// ex) s = "LVIII"
// i = 'L', i+1 = 'V'
// cur = 50, next = 5
// result = 0 + 50 = 50
// i = 'V', i+1 = 'I'
// cur = 5, next = 1
// result = 50 + 5 = 55
// i = 'I', i+1 = 'I'
// cur = 1, next = 1
// result = 55 + 1 = 56
// i = 'I', i+1 = 'I'
// cur = 1, next = 1
// result = 56 + 1 = 57
// i = 'I', i+1 = 'I'
// cur = 1, next = 1
// result = 57 + 1 = 58
Author And Source
이 문제에 관하여([LeetCode] Roman to Integer - JavaScript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@leeeunbin/LeetCode-Roman-to-Integer-JavaScript저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)