Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
defmodule Roman_numeral do
|
||||
@symbols [ {1000, 'M'}, {900, 'CM'}, {500, 'D'}, {400, 'CD'}, {100, 'C'}, {90, 'XC'},
|
||||
{50, 'L'}, {40, 'XL'}, {10, 'X'}, {9, 'IX'}, {5, 'V'}, {4, 'IV'}, {1, 'I'} ]
|
||||
def encode(num) do
|
||||
{roman,_} = Enum.reduce(@symbols, {[], num}, fn {divisor, letter}, {memo, n} ->
|
||||
{memo ++ List.duplicate(letter, div(n, divisor)), rem(n, divisor)}
|
||||
end)
|
||||
Enum.join(roman)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue