best-holdem-hand ( hand -- n cards )


Vocabulary
poker

Inputs
handa sequence


Outputs
nan integer
cardsa sequence


Word description
Creates a new poker hand containing the best possible combination of the cards specified in seq.

Examples
USING: kernel poker prettyprint ; HAND{ AS KD JC KH 2D 2S KC } best-holdem-hand drop value>hand-name .
"Full House"


Definition