Skip to content

Instantly share code, notes, and snippets.

@s3itz
Created February 24, 2016 00:59
Show Gist options
  • Save s3itz/913914e4348f9445f37e to your computer and use it in GitHub Desktop.
Save s3itz/913914e4348f9445f37e to your computer and use it in GitHub Desktop.
defmodule Swapper do
def swap([]), do: []
def swap([a,b | tail]), do: [b, a | swap(tail)]
def swap([_]), do: raise "Can't swap a list with an odd number of elements"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment