**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Roman to Integer** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Hash map; subtract if current < next
**Edge Cases to Consider:**
- (1) Single numeral
- (2) Subtractive cases (IV, IX, etc.)
- (3) Maximum Roman (MMMCMXCIX=3999)