Skip to content

The Roman Numeral Kata

hibri edited this page Jun 30, 2012 · 1 revision

The Romans were a clever bunch. They conquered most of Europe and ruled it for hundreds of years. They invented concrete and straight roads and even bikinis. One thing they never discovered though was the number zero. This made writing and dating extensive histories of their exploits slightly more challenging, but the system of numbers they came up with is still in use today. For example the BBC uses Roman numerals to date their programmes.

The Romans wrote numbers using letters - I, V, X, L, C, D, M. (notice these letters have lots of straight lines and are hence easy to hack into stone tablets). The kata says you should write a function to convert from normal numbers to Roman Numerals:

Number	Roman Numeral
------------------------------------------
 1		I
 2		II
 4		IV
 5		V
 10		X
 50		L
 100	C
 500	D
 1000	M

You should aim for a solution that can convert any number up to 3000. There is no need to be able to convert numbers larger than about 3000 as the Romans themselves didn't tend to go any higher anyway.

Note that you can't write numerals like "IM" for 999. Wikipedia says:

Modern Roman numerals ... are written by expressing each digit separately starting with the left most digit and skipping any digit with a value of zero. To see this in practice, consider the ... example of 1990. In Roman numerals 1990 is rendered: 1000=M, 900=CM, 90=XC; resulting in MCMXC. 2008 is written as 2000=MM, 8=VIII; or MMVIII. Getting Started

The interface to your convertor can be anything you like but we’d suggest passing in a integer to begin with. Feel free to use any language, and write the tests in any order you prefer.

credits: Laurent Bossavit http://codingdojo.org/cgi-bin/wiki.pl?KataRomanNumerals

Clone this wiki locally