leetcode/include/s0012_integer_to_roman.hpp
Sainnhe Park e865d369e6
All checks were successful
continuous-integration/drone/push Build is passing
s0012
2022-11-03 15:44:17 +08:00

14 lines
171 B
C++

#ifndef S0012_INTEGER_TO_ROMAN
#define S0012_INTEGER_TO_ROMAN
#include <string>
using namespace std;
class Solution {
public:
string intToRoman(int num);
};
#endif