pokersolver
pokersolver copied to clipboard
Javascript poker hand solver.
The following will give me "Four of a Kind, A's" as expected: `Hand.solve(['Ad', 'As', 'Jc', 'Th', '2d', '0r', '0r']).descr;` However, the following is giving me "Full House, 10's over A's"...
When using `Hand.solve([ 'Ad', '3s', '5c', '5h', '0r' ])` I was not expecting the Joker to have any impact on the hand, but instead the hand is evaluated as `Three...
For hand Jd, Ac, Ad, 7d, Qd, 4d, Td i get this result. You can notice there is 6 cards in the result combination.
The program is great. Thank you. Using version 2.1.2. Using it for 7-card stud, deuces wild. I have the following hand. ['5c', '6h', '7d', '9c', '4d', '2s', 'Tc'] It should...