Skip to content

Instantly share code, notes, and snippets.

@digitalex
Created November 16, 2012 12:30
Show Gist options
  • Save digitalex/4086946 to your computer and use it in GitHub Desktop.
Save digitalex/4086946 to your computer and use it in GitHub Desktop.
2 player tournament draw
players = ['sergei','birger','vincent','geir','harald','alex']
players.shuffle.each_slice(2) do |a,b|
puts "#{a} - #{b}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment