Skip to content

Instantly share code, notes, and snippets.

@abinoam
Forked from brandonhilkert/mega_lotto.rb
Last active December 31, 2015 07:39
Show Gist options
  • Save abinoam/7955494 to your computer and use it in GitHub Desktop.
Save abinoam/7955494 to your computer and use it in GitHub Desktop.
class MegaLotto
NUMBERS = 5
def draw
Array.new(NUMBERS){ single_draw }
end
private
def single_draw
rand(0...60)
end
end
mega_lotto = MegaLotto.new
p mega_lotto.draw # => Ex: [23, 22, 3, 7, 16]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment