File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
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 `
You can’t perform that action at this time.
0 commit comments