Easy
Given a Roman numeral string s, convert it to an integer. Symbols: I=1, V=5, X=10, L=50, C=100, D=500, M=1000. A smaller symbol before a larger one is subtracted (e.g., IV = 4).
Input: s = "III" Output: 3
Input: s = "LVIII" Output: 58
Input: s = "MCMXCIV" Output: 1994