Solution: Roman to Integer
Explore how to convert Roman numerals into integers using a hash map-based algorithm. Learn the additive and subtractive principles of Roman numerals, use dictionary lookups for constant time value retrieval, and efficiently process numeric strings to implement a clean, linear-time solution.
We'll cover the following...
Statement
Given a string, s, representing a Roman numeral, return the integer value of the Roman numeral.
Seven different symbols represent Roman numerals:
Symbol | Value |
I | 1 |
V | 5 |
X | 10 |
L | 50 |
C | 100 |
D | 500 |
M | 1000 |
So, in Roman numerals,
Roman numerals are usually written from largest to smallest from left to right (