Interview Query

Integer to Roman

Start Timer

0:00:00

Upvote
8
Downvote
Save question
Mark as completed
View comments (6)
Next question

Given the integer list nums with length n, create a function that converts each integer in the list into its corresponding Roman numeral representation. The Roman numeral symbols and corresponding values are provided in the table below. The function must be able to handle integers up to 1000.

Symbols Values
I 1
IV 4
V 5
IX 9
X 10
XL 40
L 50
XC 90
C 100
CD 400
D 500
CM 900
M 1000

Examples:

Input:

nums = [1, 4, 179]

Output:

["I", "IV", "CLXXIX"]
.
.
.
.
.


Comments

Loading comments