Python-Checkers
Python-Checkers copied to clipboard
Minimax
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...