leetcode/include/s0012_integer_to_roman.hpp

14 lines
171 B
C++
Raw Normal View History

2022-11-03 07:44:17 +00:00
#ifndef S0012_INTEGER_TO_ROMAN
#define S0012_INTEGER_TO_ROMAN
#include <string>
using namespace std;
class Solution {
public:
string intToRoman(int num);
};
#endif