Skip to content

Instantly share code, notes, and snippets.

@sahidursuman
Forked from brandonhilkert/mega_lotto.rb
Last active August 29, 2015 14:08
Show Gist options
  • Save sahidursuman/89fbf1629771b757515c to your computer and use it in GitHub Desktop.
Save sahidursuman/89fbf1629771b757515c to your computer and use it in GitHub Desktop.
class MegaLotto
NUMBERS = 5
def draw
NUMBERS.times.inject([]) do |arr, i|
arr << single_draw
end
end
private
def single_draw
rand(0...60)
end
end
MegaLotto.new.draw # => [23, 22, 3, 7, 16]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment