Skip to content

Instantly share code, notes, and snippets.

@maiah
Last active November 4, 2015 04:53
Show Gist options
  • Save maiah/034b852e084ccf5781ba to your computer and use it in GitHub Desktop.
Save maiah/034b852e084ccf5781ba to your computer and use it in GitHub Desktop.
defmodule P2 do
def num_to_list(mx) do
if mx > 1 do
Enum.reduce(1..mx, fn (x, acc) -> "#{acc},#{x}" end)
else
"#{mx}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment