-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkt39_roman_numerals_encoder.py
95 lines (86 loc) · 1.91 KB
/
kt39_roman_numerals_encoder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"""Title: Roman Numerals Encoder
URL: https://www.codewars.com/kata/roman-numerals-encoder
Description:
Create a function taking a positive integer as its parameter and returning a string containing the Roman Numeral representation of that integer.
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. 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. 1666 uses each Roman symbol in descending order: MDCLXVI.
Example:
```javascript
solution(1000); // should return 'M'
```
```coffeescript
solution(1000) # should return 'M'
```
```ruby
solution(1000) # should return 'M'
```
```python
solution(1000) # should return 'M'
```
```haskell
solution 1000 -- should return "M"
```
```java
conversion.solution(1000); //should return "M"
```
```typescript
solution(1000); // should return 'M'
```
```cpp
solution(1000); // should return "M"
```
```php
solution(1000); // should return "M"
```
```csharp
RomanConvert.Solution(1000) -- should return "M"
```
```swift
solution(1000) // should return "M"
```
```elixir
solution(1000) # should return "M"
```
```r
solution(1000) # should return "M"
```
```c
solution(1000); // => "M"
```
```nim
solution(1000) # should return "M"
```
Help:
```
Symbol Value
I 1
V 5
X 10
L 50
C 100
D 500
M 1,000
```
Remember that there can't be more than 3 identical symbols in a row.
More about roman numerals - http://en.wikipedia.org/wiki/Roman_numerals
"""
D = [
('M', 1000),
('CM', 900),
('D', 500),
('CD', 400),
('C', 100),
('XC', 90),
('L', 50),
('XL', 40),
('X', 10),
('IX', 9),
('V', 5),
('IV', 4),
('I', 1)]
def solution(n):
ret = ''
for char, num in D:
res, n = divmod(n, num)
if res:
ret += char * res
return ret