[Solved] Teaching the computer to play texas Hold’em poker [closed]

The complexity and state space of the Poker is not large. Therefore it is possible to just exhaustively search all the combinations. In fact you can even calculate the probability of getting each cards with some arithmetic. I would recommend you to read Poker Theory and Analytics by Kevin Desmond on MIT Open Courseware to … Read more

[Solved] I am having difficulty with my deal method

There is a lot of things wrong with this code. Your problem is, because you are randoming more and more instead of using te ran variable you declared at the beggining of deal method. After you declared your ran variable, don’t do dealer.nextInt(deck.length), replace it with ran. Your shuffling is not really shuffling, check this: … Read more