Skip to content

Instantly share code, notes, and snippets.

@thatrubylove
Created April 19, 2014 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thatrubylove/11075940 to your computer and use it in GitHub Desktop.
Save thatrubylove/11075940 to your computer and use it in GitHub Desktop.
001-kata-playing-cards-example-3
suits = %i[hearts clubs]
ranks = %i[ace two three four five six seven eight nine ten jack queen king]
cards = ranks.flat_map {|rank| suits.map {|suit| "#{rank} of #{suit}" } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment