-
-
Save luckyruby/84aadbe5dfb576c8ef4fb4c0fe7623da to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def generate_cards | |
@cards = [] | |
FACES.each do |face| | |
SUITS.each do |suit| | |
@cards << Card.new(face,suit) | |
end | |
end | |
end |
This file contains hidden or 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
def generate_cards | |
@cards = FACES.map do |face| | |
SUITS.map do |suit| | |
Card.new(face,suit) | |
end | |
end | |
@cards.flatten! | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment