Python-Checkers icon indicating copy to clipboard operation
Python-Checkers copied to clipboard

Results 4 Python-Checkers issues
Sort by recently updated
recently updated
newest added

Minimax module is missing

When trying to skip 3 pieces, you are losing some skipped pieces on your way, because of no concatenation of previous skipped pieces of previous recursion iteration. Suggested fix (I...

JRB: I have no minimax to import... Looking forward to seeing your implementation, though :)

I believe the lines 104 and 137 of the board.py file should BOTH go from: row = max(r-3, 0) to row = max(r-3, -1) Currently when a red pawn could...