leetcode/include/s0013_roman_to_integer.hpp

15 lines
194 B
C++
Raw Normal View History

2022-11-03 08:09:44 +00:00
#ifndef S0013_ROMAN_TO_INTEGER
#define S0013_ROMAN_TO_INTEGER
#include <string>
#include <unordered_map>
using namespace std;
class Solution {
public:
int romanToInt(string s);
};
#endif