15 lines
202 B
C++
15 lines
202 B
C++
#ifndef S0013_ROMAN_TO_INTEGER_HPP
|
|
#define S0013_ROMAN_TO_INTEGER_HPP
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
int romanToInt(string s);
|
|
};
|
|
|
|
#endif
|