leetcode/include/s0013_roman_to_integer.hpp

15 lines
199 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0013_ROMAN_TO_INTEGER_HPP
#define S0013_ROMAN_TO_INTEGER_HPP
2022-11-03 08:09:44 +00:00
#include <string>
#include <unordered_map>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0013 {
2022-11-03 08:09:44 +00:00
public:
int romanToInt(string s);
};
#endif