LC 13. Roman to Integer
https://leetcode.com/problems/roman-to-integer/description/?envType=study-plan-v2&envId=top-interview-150
class Solution {
public:
int romanToInt(string s) {
int n = s.size();
int ans = 0;