Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
204 changes: 112 additions & 92 deletions exercises/roman-numerals/canonical-data.json
Original file line number Diff line number Diff line change
@@ -1,94 +1,114 @@
{
"cases": [
{
"description": "1 is a single I",
"number" : 1,
"expected": "I"
},
{
"description": "2 is two I's",
"number" : 2,
"expected": "II"
},
{
"description": "3 is three I's",
"number" : 3,
"expected": "III"
},
{
"description": "4, being 5 - 1, is IV",
"number" : 4,
"expected": "IV"
},
{
"description": "5 is a single V",
"number" : 5,
"expected": "V"
},
{
"description": "6, being 5 + 1, is VI",
"number" : 6,
"expected": "VI"
},
{
"description": "9, being 10 - 1, is IX",
"number" : 9,
"expected": "IX"
},
{
"description": "20 is two X's",
"number" : 27,
"expected": "XXVII"
},
{
"description": "48 is not 50 - 2 but rather 40 + 8",
"number" : 48,
"expected": "XLVIII"
},
{
"description": "50 is a single L",
"number" : 59,
"expected": "LIX"
},
{
"description": "90, being 100 - 10, is XC",
"number" : 93,
"expected": "XCIII"
},
{
"description": "100 is a single C",
"number" : 141,
"expected": "CXLI"
},
{
"description": "60, being 50 + 10, is LX",
"number" : 163,
"expected": "CLXIII"
},
{
"description": "400, being 500 - 100, is CD",
"number" : 402,
"expected": "CDII"
},
{
"description": "500 is a single D",
"number" : 575,
"expected": "DLXXV"
},
{
"description": "900, being 1000 - 100, is CM",
"number" : 911,
"expected": "CMXI"
},
{
"description": "1000 is a single M",
"number" : 1024,
"expected": "MXXIV"
},
{
"description": "3000 is three M's",
"number" : 3000,
"expected": "MMM"
}
]
"exercise": "roman-numerals",
"version": "1.0.0",
"cases": [
{
"description": "1 is a single I",
"property": "roman",
"number": 1,
"expected": "I"
},
{
"description": "2 is two I's",
"property": "roman",
"number": 2,
"expected": "II"
},
{
"description": "3 is three I's",
"property": "roman",
"number": 3,
"expected": "III"
},
{
"description": "4, being 5 - 1, is IV",
"property": "roman",
"number": 4,
"expected": "IV"
},
{
"description": "5 is a single V",
"property": "roman",
"number": 5,
"expected": "V"
},
{
"description": "6, being 5 + 1, is VI",
"property": "roman",
"number": 6,
"expected": "VI"
},
{
"description": "9, being 10 - 1, is IX",
"property": "roman",
"number": 9,
"expected": "IX"
},
{
"description": "20 is two X's",
"property": "roman",
"number": 27,
"expected": "XXVII"
},
{
"description": "48 is not 50 - 2 but rather 40 + 8",
"property": "roman",
"number": 48,
"expected": "XLVIII"
},
{
"description": "50 is a single L",
"property": "roman",
"number": 59,
"expected": "LIX"
},
{
"description": "90, being 100 - 10, is XC",
"property": "roman",
"number": 93,
"expected": "XCIII"
},
{
"description": "100 is a single C",
"property": "roman",
"number": 141,
"expected": "CXLI"
},
{
"description": "60, being 50 + 10, is LX",
"property": "roman",
"number": 163,
"expected": "CLXIII"
},
{
"description": "400, being 500 - 100, is CD",
"property": "roman",
"number": 402,
"expected": "CDII"
},
{
"description": "500 is a single D",
"property": "roman",
"number": 575,
"expected": "DLXXV"
},
{
"description": "900, being 1000 - 100, is CM",
"property": "roman",
"number": 911,
"expected": "CMXI"
},
{
"description": "1000 is a single M",
"property": "roman",
"number": 1024,
"expected": "MXXIV"
},
{
"description": "3000 is three M's",
"property": "roman",
"number": 3000,
"expected": "MMM"
}
]
}