Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 199 Bytes

RomanNumeralConversion.md

File metadata and controls

10 lines (8 loc) · 199 Bytes

Roman Numeral Conversion

Given an integer, write a function to return its roman numeral representation.

eg.

integerToRoman(1)  = "I"
integerToRoman(4)  = "IV"
integerToRoman(49) = "XLIX"