Elixir module for generating tournament brackets. We will add functions gradually. https://hexdocs.pm/tournamex/0.1.0/api-reference.html
defp deps do
[
{:tournamex, "~> 0.5.0"}
]
end
iex(1)> Tournamex.generate_matchlist([1, 2, 3, 4, 5])
{:ok, [[5, 2], [3, [4, 1]]]}