Sainnhe Park
0df74464b7
All checks were successful
continuous-integration/drone/push Build is passing
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
|