Dusty
One of the Exercism exercises on the Elixir track is to take an integer (0 to ~3000) and convert it to a Roman numeral. My solution was a little “pipe-happy,” and I have subsequently discovered better approaches. In the course of doing all that piping, I used Enum.reverse() twice. I’ve read that sometimes list reversal is O(n) and sometimes O(1) with a pointer swap, but I don’t know which applies in Elixir. Should I even care? Or perhaps a better question, at what length of list should I start caring?
For reference, my solution:
defmodule RomanNumerals do
@doc """
Convert the number to a roman number.
"""
@spec numeral(pos_integer) :: String.t()
def numeral(number) when is_integer(number) do
number
|> Integer.digits()
|> Enum.reverse()
|> Enum.with_index()
|> Enum.map(&get_roman/1)
|> Enum.reverse()
|> List.to_string()
end
def get_roman({_number, _index} = pair) do
case pair do
{0, _} -> ""
{1, 0} -> "I"
{2, 0} -> "II"
{3, 0} -> "III"
{4, 0} -> "IV"
{5, 0} -> "V"
{6, 0} -> "VI"
{7, 0} -> "VII"
{8, 0} -> "VIII"
{9, 0} -> "IX"
{1, 1} -> "X"
{2, 1} -> "XX"
{3, 1} -> "XXX"
{4, 1} -> "XL"
{5, 1} -> "L"
{6, 1} -> "LX"
{7, 1} -> "LXX"
{8, 1} -> "LXXX"
{9, 1} -> "XC"
{1, 2} -> "C"
{2, 2} -> "CC"
{3, 2} -> "CCC"
{4, 2} -> "CD"
{5, 2} -> "D"
{6, 2} -> "DC"
{7, 2} -> "DCC"
{8, 2} -> "DCCC"
{9, 2} -> "CM"
{1, 3} -> "M"
{2, 3} -> "MM"
{3, 3} -> "MMM"
_ -> "Too High!"
end
end
end
And a more elegant solution by one of the other students:
defmodule RomanNumerals do
@doc """
Convert the number to a roman number.
"""
@spec numeral(pos_integer) :: String.t()
def numeral(n) do
cond do
n >= 1000 -> "M" <> numeral(n - 1000)
n >= 900 -> "CM" <> numeral(n - 900)
n >= 500 -> "D" <> numeral(n - 500)
n >= 400 -> "CD" <> numeral(n - 400)
n >= 100 -> "C" <> numeral(n - 100)
n >= 90 -> "XC" <> numeral(n - 90)
n >= 50 -> "L" <> numeral(n - 50)
n >= 40 -> "XL" <> numeral(n - 40)
n >= 10 -> "X" <> numeral(n - 10)
n >= 9 -> "IX" <> numeral(n - 9)
n >= 5 -> "V" <> numeral(n - 5)
n >= 4 -> "IV" <> numeral(n - 4)
n >= 1 -> "I" <> numeral(n - 1)
true -> ""
end
end
end
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
StanBright
To be honest, I don’t know whether it is O(n) or O(1). I have a feeling that it is O(n). I’d be happy if someone more experienced chimes in.
At the same time, I did an exercise on Exercism recently that required a “fast” solution. It required working with a list of 1_000_000 items and reversing the list was fast enough. Reversing through tail recursion. I think that Enum.reverse uses a similar approach if not something faster :).
benwilson512
List reversal is indeed O(n) , however it is also a built in optimized function within the VM. List reversal happens constantly within functional languages, so the VM goes to a lot of effort optimize it.
hauleth
About Your question about “better solution” then when building binaries the answer almost always will be the same - io lists.
Dusty
This is a fascinating solution
Can you explain the use of
unquote()in this context? I don’t think I’ve seen it outside of adefmacro quote.hauleth
There is “implicit macro” which is in
def/defp. You can think aboutunquote/1in this case as a way to use variable from “outer scope”:So in this sense it is a way to use bindings defined in
forcomprehension within function definition. It is used to have dynamically defined functions via meta programming. And sometimes it is required to be able to use custom atom as function name:Which is sometimes needed for modules that are meant to work for example with
xmerlor'$handle_undefined_function'/2handler, ex:Dusty
Thanks, very helpful! So the overloading of variable
nis just coincidence? It’s unclear to me how the compiler knows that thenpassed tounquote()is from the outer scope. Or perhaps, by callingunquote()you are telling the compiler thatncan only be from the outer scope?hauleth
Yes, in this case it can be only from the outer scope as “function”
ndo not exists at all. It would probably be more clear if I would write it as: