Skip to content

Instantly share code, notes, and snippets.

@hovsater
Created May 29, 2021 20:14
Show Gist options
  • Save hovsater/56140651f836c9a8f08fb8b324517f01 to your computer and use it in GitHub Desktop.
Save hovsater/56140651f836c9a8f08fb8b324517f01 to your computer and use it in GitHub Desktop.
def caesar([], _n), do: []
def caesar([head | tail], n) do
with lower = ?A,
upper = ?z + 1 do
[rem(head + n - lower, upper - lower) + lower | caesar(tail, n)]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment