From charlesreid1

(Created page with "==Problem Statement== POKER TIME!!! ==Solution Technique== ==Code== Link: https://charlesreid1.com:3000/cs/euler/src/master/scratch/Round2_050-070/054 ==Flags== {{Projec...")
 
Line 2: Line 2:


POKER TIME!!!
POKER TIME!!!
This problem asks us to compare 1 thousand poker hands and count the number of hands player 1 wins.
* High Card: Highest value card.
* One Pair: Two cards of the same value.
* Two Pairs: Two different pairs.
* Three of a Kind: Three cards of the same value.
* Straight: All cards are consecutive values.
* Flush: All cards of the same suit.
* Full House: Three of a kind and a pair.
* Four of a Kind: Four cards of the same value.
* Straight Flush: All cards are consecutive values of same suit.
* Royal Flush: Ten, Jack, Queen, King, Ace, in same suit.


==Solution Technique==
==Solution Technique==

Revision as of 09:40, 8 January 2018

Problem Statement

POKER TIME!!!

This problem asks us to compare 1 thousand poker hands and count the number of hands player 1 wins.

  • High Card: Highest value card.
  • One Pair: Two cards of the same value.
  • Two Pairs: Two different pairs.
  • Three of a Kind: Three cards of the same value.
  • Straight: All cards are consecutive values.
  • Flush: All cards of the same suit.
  • Full House: Three of a kind and a pair.
  • Four of a Kind: Four cards of the same value.
  • Straight Flush: All cards are consecutive values of same suit.
  • Royal Flush: Ten, Jack, Queen, King, Ace, in same suit.

Solution Technique

Code

Link: https://charlesreid1.com:3000/cs/euler/src/master/scratch/Round2_050-070/054

Flags