Skip to content

Instantly share code, notes, and snippets.

@sarahzrf
Forked from domgetter/deck.rb
Created July 7, 2014 03:59
Show Gist options
  • Save sarahzrf/43278b3ccea8150b9c7a to your computer and use it in GitHub Desktop.
Save sarahzrf/43278b3ccea8150b9c7a to your computer and use it in GitHub Desktop.
class Deck
RANKS = %w(2 3 4 5 6 7 8 9 10 J Q K A)
SUITS = %w(s h c d)
def initialize
@cards = RANKS.product(SUITS).map {|r, s| {rank: r, suit: s}}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment