Skip to content

Commit f4a83fc

Browse files
committed
added README
1 parent 8ac1971 commit f4a83fc

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Roman_Numeral_Converter/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# CHECK [Roman Numeral Converter.md]() for complete test case
2+
3+
- `convertToRoman(2)` should return the string `II`
4+
- `convertToRoman(3)` should return the string `III`
5+
- `convertToRoman(4)` should return the string `IV`
6+
- `convertToRoman(5)` should return the string `V`
7+
- `convertToRoman(9)` should return the string `IX`
8+
- `convertToRoman(12)` should return the string `XII`
9+
- `convertToRoman(16)` should return the string `XVI`
10+
- `convertToRoman(29)` should return the string `XXIX`
11+
- `convertToRoman(44)` should return the string `XLIV`
12+
- `convertToRoman(45)` should return the string `XLV`
13+
- `convertToRoman(68)` should return the string `LXVIII`
14+
- `convertToRoman(83)` should return the string `LXXXIII`
15+
- `convertToRoman(97)` should return the string `XCVII`
16+
- `convertToRoman(99)` should return the string `XCIX`
17+
- `convertToRoman(400)` should return the string `CD`
18+
- `convertToRoman(500)` should return the string `D`
19+
- `convertToRoman(501)` should return the string `DI`
20+
- `convertToRoman(649)` should return the string `DCXLIX`
21+
- `convertToRoman(798)` should return the string `DCCXCVII- I`

0 commit comments

Comments
 (0)