Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Last active June 11, 2018 09:35
Show Gist options
  • Save KamilLelonek/cd4cd49bfb5c5112e8f69df23564bd2c to your computer and use it in GitHub Desktop.
Save KamilLelonek/cd4cd49bfb5c5112e8f69df23564bd2c to your computer and use it in GitHub Desktop.
defp prepend_zeros(acc, input) do
input
|> encode_zeros()
|> apend(acc)
end
defp encode_zeros(input) do
input
|> leading_zeros()
|> duplicate_zeros()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment