File tree 1 file changed +84
-0
lines changed
1 file changed +84
-0
lines changed Original file line number Diff line number Diff line change
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
+ } ;
You can’t perform that action at this time.
0 commit comments