2018-09-30 23:01:58 +01:00
---
id: a7f4d8f2483413a6ce226cac
title: Roman Numeral Converter
isRequired: true
challengeType: 5
---
## Description
< section id = 'description' >
Convert the given number into a roman numeral.
All < a href = "http://www.mathsisfun.com/roman-numerals.html" target = "_blank" > roman numerals< / a > answers should be provided in upper-case.
Remember to use < a href = 'http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514' target = '_blank' > Read-Search-Ask< / a > if you get stuck. Try to pair program. Write your own code.
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
```yml
- text: < code > convertToRoman(2)</ code > should return "II".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(2), "II", ''< code > convertToRoman(2)< / code > should return "II".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(3)</ code > should return "III".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(3), "III", ''< code > convertToRoman(3)< / code > should return "III".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(4)</ code > should return "IV".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(4), "IV", ''< code > convertToRoman(4)< / code > should return "IV".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(5)</ code > should return "V".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(5), "V", ''< code > convertToRoman(5)< / code > should return "V".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(9)</ code > should return "IX".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(9), "IX", ''< code > convertToRoman(9)< / code > should return "IX".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(12)</ code > should return "XII".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(12), "XII", ''< code > convertToRoman(12)< / code > should return "XII".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(16)</ code > should return "XVI".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(16), "XVI", ''< code > convertToRoman(16)< / code > should return "XVI".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(29)</ code > should return "XXIX".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(29), "XXIX", ''< code > convertToRoman(29)< / code > should return "XXIX".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(44)</ code > should return "XLIV".
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(44), "XLIV", ''< code > convertToRoman(44)< / code > should return "XLIV".'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(45)</ code > should return "XLV"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(45), "XLV", ''< code > convertToRoman(45)< / code > should return "XLV"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(68)</ code > should return "LXVIII"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(68), "LXVIII", ''< code > convertToRoman(68)< / code > should return "LXVIII"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(83)</ code > should return "LXXXIII"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(83), "LXXXIII", ''< code > convertToRoman(83)< / code > should return "LXXXIII"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(97)</ code > should return "XCVII"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(97), "XCVII", ''< code > convertToRoman(97)< / code > should return "XCVII"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(99)</ code > should return "XCIX"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(99), "XCIX", ''< code > convertToRoman(99)< / code > should return "XCIX"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(400)</ code > should return "CD"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(400), "CD", ''< code > convertToRoman(400)< / code > should return "CD"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(500)</ code > should return "D"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(500), "D", ''< code > convertToRoman(500)< / code > should return "D"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(501)</ code > should return "DI"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(501), "DI", ''< code > convertToRoman(501)< / code > should return "DI"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(649)</ code > should return "DCXLIX"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(649), "DCXLIX", ''< code > convertToRoman(649)< / code > should return "DCXLIX"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(798)</ code > should return "DCCXCVIII"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(798), "DCCXCVIII", ''< code > convertToRoman(798)< / code > should return "DCCXCVIII"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(891)</ code > should return "DCCCXCI"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(891), "DCCCXCI", ''< code > convertToRoman(891)< / code > should return "DCCCXCI"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(1000)</ code > should return "M"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(1000), "M", ''< code > convertToRoman(1000)< / code > should return "M"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(1004)</ code > should return "MIV"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(1004), "MIV", ''< code > convertToRoman(1004)< / code > should return "MIV"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(1006)</ code > should return "MVI"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(1006), "MVI", ''< code > convertToRoman(1006)< / code > should return "MVI"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(1023)</ code > should return "MXXIII"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(1023), "MXXIII", ''< code > convertToRoman(1023)< / code > should return "MXXIII"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(2014)</ code > should return "MMXIV"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(2014), "MMXIV", ''< code > convertToRoman(2014)< / code > should return "MMXIV"'');'
2018-09-30 23:01:58 +01:00
- text: < code > convertToRoman(3999)</ code > should return "MMMCMXCIX"
2018-10-02 15:02:53 +01:00
testString: 'assert.deepEqual(convertToRoman(3999), "MMMCMXCIX", ''< code > convertToRoman(3999)< / code > should return "MMMCMXCIX"'');'
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function convertToRoman(num) {
return num;
}
convertToRoman(36);
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
function convertToRoman(num) {
var ref = [['M', 1000], ['CM', 900], ['D', 500], ['CD', 400], ['C', 100], ['XC', 90], ['L', 50], ['XL', 40], ['X', 10], ['IX', 9], ['V', 5], ['IV', 4], ['I', 1]];
var res = [];
ref.forEach(function(p) {
while (num >= p[1]) {
res.push(p[0]);
num -= p[1];
}
});
2018-10-02 15:02:53 +01:00
return res.join('');
2018-09-30 23:01:58 +01:00
}
```
< / section >