Skip to content

Instantly share code, notes, and snippets.

@SamSaffron
Created September 3, 2019 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SamSaffron/05b7798cb1da27e68364ec4406326963 to your computer and use it in GitHub Desktop.
Save SamSaffron/05b7798cb1da27e68364ec4406326963 to your computer and use it in GitHub Desktop.
staff = %w{
JeffA
Robin
Sam
Neil
Regis
Arpit
Falco
Blake
Joffrey
Hawk
Michael
Josh
Gerhard
Andrew
Vinoth
Simon
JeffW
Gen
David
Rishabh
Bianca
Penar
Saj
Dan
Taylor
Roman
Justin
Daniel
Jarek
}
i = 0
staff.shuffle.each_slice(10) do |slice|
puts ""
puts "Group #{i}"
i += 1
slice.each do |u|
puts u
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment