leetcode/include/s0013_roman_to_integer.hpp
2022-11-30 18:20:36 +08:00

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