15 lines
194 B
C++
15 lines
194 B
C++
|
#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
|