Skip to content

Instantly share code, notes, and snippets.

@rylev
rylev / sort.ex
Created October 9, 2013 19:07
Sort Algorithms in Elixir
## Sort Algorithms in Elixir
# Selection Sort
defmodule Selection do
def sort(list) when is_list(list) do
do_selection(list, [])
end
def do_selection([head|[]], acc) do