Arti Dari Kata Poker Face

  1. Arti Dari Kata Poker Face Mask
Face

Dia menjadi wanita pertama yang menerima sertifikasi Digital Diamond Award dari RIAA, menjadi satu dari tiga artis dengan setidaknya dua lagu bersertifikasi Berlian ('Bad Romance' dan 'Poker Face'), dan menjadi artis satu-satunya dan pertama yang mempunyai dua lagu melewati 7 juta unggahan ('Poker Face' dan 'Just Dance'). Jadi dalam permainan poker di kenal dengan instilah Poker Face yang tanpa expresi di mana orang tidak akan bisa memperkirakan kartu apa yang kita pegang, dan kata kata ini juga dipergunakan oleh penyanyi lagi gaga 'Poker Face'.

This kata is blatantly stolen from acm.uva.es/p/v103/10315.html It is a subset of KataTexasHoldEm, which is a very large Kata.

Problem Description

ArtiFace

Poker rules description

A poker deck contains 52 cards - each card has a suit which is one of clubs, diamonds, hearts, or spades (denoted C, D, H, and S in the input data). Each card also has a value which is one of 2, 3, 4, 5, 6, 7, 8, 9, 10, jack, queen, king, ace (denoted 2, 3, 4, 5, 6, 7, 8, 9, T, J, Q, K, A). For scoring purposes, the suits are unordered while the values are ordered as given above, with 2 being the lowest and ace the highest value.

A poker hand consists of 5 cards dealt from the deck. Poker hands are ranked by the following partial order from lowest to highest.

  • R1/High Card: Hands which do not fit any higher category are ranked by the value of their highest card. If the highest cards have the same value, the hands are ranked by the next highest, and so on.
  • R2/Pair: 2 of the 5 cards in the hand have the same value. Hands which both contain a pair are ranked by the value of the cards forming the pair. If these values are the same, the hands are ranked by the values of the cards not forming the pair, in decreasing order.
  • R3/Two Pairs: The hand contains 2 different pairs. Hands which both contain 2 pairs are ranked by the value of their highest pair. Hands with the same highest pair are ranked by the value of their other pair. If these values are the same the hands are ranked by the value of the remaining card.
  • R4/Three of a Kind: Three of the cards in the hand have the same value. Hands which both contain three of a kind are ranked by the value of the 3 cards.Straight: Hand contains 5 cards with consecutive values. Hands which both contain a straight are ranked by their highest card.
  • R5/Flush: Hand contains 5 cards of the same suit. Hands which are both flushes are ranked using the rules for High Card.
  • R6/Full House: 3 cards of the same value, with the remaining 2 cards forming a pair. Ranked by the value of the 3 cards.
  • R7/Four of a kind:A 4 cards with the same value. Ranked by the value of the 4 cards.
  • R8/Straight flush: 5 cards of the same suit with consecutive values. Ranked by the highest card in the hand.

Suggested Test Cases

Sample input:

Sample output:

Arti Dari Kata Poker Face Mask

I found a reference to this Kata on IvanSanchez blog: isanchez.net/2009/04/19/ruby-coding-dojo-this-week/

The 3d rows should result in Black winning, not White since 2H 3D 5S 9C KD is higher than 2C 3H 4S 8C KH

Comments are closed.