GREEN: add convertion rules for 90 and 100
This commit is contained in:
parent
24cdceaa92
commit
1b0336edeb
1 changed files with 2 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
String integerToRoman(int number) {
|
String integerToRoman(int number) {
|
||||||
const conversionRules = [
|
const conversionRules = [
|
||||||
|
(100, 'C'),
|
||||||
|
(90, 'XC'),
|
||||||
(50, 'L'),
|
(50, 'L'),
|
||||||
(40, 'XL'),
|
(40, 'XL'),
|
||||||
(10, 'X'),
|
(10, 'X'),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue