leetcode/include/s0013_roman_to_integer.hpp

15 lines
199 B
C++

#ifndef S0013_ROMAN_TO_INTEGER_HPP
#define S0013_ROMAN_TO_INTEGER_HPP
#include <string>
#include <unordered_map>
using namespace std;
class S0013 {
public:
int romanToInt(string s);
};
#endif