roman_numerals: working solution
This commit is contained in:
parent
bbfb9da1a1
commit
01e3033b83
2 changed files with 71 additions and 0 deletions
10
cpp/roman-numerals/roman_numerals.h
Normal file
10
cpp/roman-numerals/roman_numerals.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#define EXERCISM_RUN_ALL_TESTS
|
||||
|
||||
namespace roman {
|
||||
|
||||
std::string convert(int);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue