fix(curriculum): external roman numeral links in JS projects (#46171)

Co-authored-by: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com>
This commit is contained in:
Muhammed Mustafa
2022-05-27 13:01:28 +02:00
committed by GitHub
parent 1fb1a090e4
commit d38a6d3e2e
2 changed files with 34 additions and 2 deletions

View File

@@ -10,7 +10,23 @@ dashedName: roman-numeral-converter
Convert the given number into a roman numeral.
All [roman numerals](http://www.mathsisfun.com/roman-numerals.html) answers should be provided in upper-case.
| Roman numerals | Arabic numerals |
|----------------|-----------------|
| M | 1000 |
| CM | 900 |
| D | 500 |
| CD | 400 |
| C | 100 |
| XC | 90 |
| L | 50 |
| XL | 40 |
| X | 10 |
| IX | 0 |
| V | 5 |
| IV | 4 |
| I | 1 |
All roman numerals answers should be provided in upper-case.
# --hints--

View File

@@ -10,7 +10,23 @@ dashedName: build-a-roman-numeral-converter
Convert the given number into a roman numeral.
All [roman numerals](http://www.mathsisfun.com/roman-numerals.html) answers should be provided in upper-case.
| Roman numerals | Arabic numerals |
|----------------|-----------------|
| M | 1000 |
| CM | 900 |
| D | 500 |
| CD | 400 |
| C | 100 |
| XC | 90 |
| L | 50 |
| XL | 40 |
| X | 10 |
| IX | 0 |
| V | 5 |
| IV | 4 |
| I | 1 |
All roman numerals answers should be provided in upper-case.
# --hints--