Skip to content

Commit c286109

Browse files
Create 0012-integer-to-roman.js
1 parent d9b73e8 commit c286109

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

javascript/0012-integer-to-roman.js

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
/**
2+
* https://leetcode.com/problems/integer-to-roman/
3+
* @param {number} num
4+
* @return {string}
5+
*/
6+
7+
var intToRoman = function(num) {
8+
let ans = "";
9+
10+
while(num !== 0){
11+
12+
//M == 1000
13+
if(num >= 1000){
14+
num -= 1000;
15+
ans += "M";
16+
}
17+
//CM == 900
18+
else if(num >= 900){
19+
num -= 900;
20+
ans += "CM";
21+
}
22+
//D == 500
23+
else if(num >= 500){
24+
num -= 500;
25+
ans += "D";
26+
}
27+
//CD == 400
28+
else if(num >= 400){
29+
num -= 400;
30+
ans += "CD"
31+
}
32+
//C == 100
33+
else if(num >= 100){
34+
num -= 100;
35+
ans += "C";
36+
}
37+
//XC == 90
38+
else if(num >= 90){
39+
num -= 90;
40+
ans += "XC";
41+
}
42+
//L == 50;
43+
else if(num >= 50){
44+
num -= 50;
45+
ans += "L";
46+
}
47+
//XL == 40
48+
else if(num >= 40){
49+
num -= 40;
50+
ans += "XL";
51+
}
52+
//X == 10
53+
else if(num >= 10){
54+
num -= 10;
55+
ans += "X";
56+
}
57+
//IX == 9
58+
else if(num >= 9){
59+
num -= 9;
60+
ans += "IX";
61+
}
62+
//V == 5
63+
else if(num >= 5){
64+
num -= 5;
65+
ans += "V";
66+
}
67+
//IV == 4
68+
else if(num >= 4){
69+
num -= 4;
70+
ans += "IV";
71+
}
72+
//II == 2
73+
else if(num >= 2){
74+
num -= 2;
75+
ans += "II";
76+
}
77+
//I == 1
78+
else{
79+
num -= 1;
80+
ans += "I";
81+
}
82+
}
83+
return ans;
84+
};

0 commit comments

Comments
 (0)