Skip to content

Instantly share code, notes, and snippets.

@rvcas
Created February 2, 2017 04:31
Show Gist options
  • Save rvcas/4eeeeeb51d078119d7abc6d63c63e96e to your computer and use it in GitHub Desktop.
Save rvcas/4eeeeeb51d078119d7abc6d63c63e96e to your computer and use it in GitHub Desktop.
Reversing a list cause I felt like it
defmodule MyList do
def reverse([]), do: []
def reverse([h | t]), do: do_reverse(t, [h])
defp do_reverse([], acc), do: acc
defp do_reverse([h | t], acc), do: do_reverse(t, [h | acc])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment