Skip to content

Instantly share code, notes, and snippets.

@ashleygwilliams
Last active December 28, 2015 17:09
Show Gist options
  • Save ashleygwilliams/7534254 to your computer and use it in GitHub Desktop.
Save ashleygwilliams/7534254 to your computer and use it in GitHub Desktop.
def roll_dice
Array.new(5) { rand(1..6) }
end
def win? roll
roll.uniq.length == 1 ? true : false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment