Created
March 31, 2015 19:20
-
-
Save tiagopog/ded9049132d330385412 to your computer and use it in GitHub Desktop.
Select authors for Agb's tech blog.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Agb | |
@@team = %w(Barreto Douglas Fabio Giovanni Paulo Raphael Tiago) | |
def sort | |
team, i = @@team, 1 | |
while team.length > 0 | |
puts "| #{i} - #{team.delete_at(rand(team.length))} |" | |
i += 1 | |
end | |
end | |
end | |
Agb.new.sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment