You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
Currently, a tie is checked through the check_draw() function. This works by checking if there are empty positions within the board.
We can improve this through checking if it is possible for a player to win, which can be done through a modified version of the win check algorithms, instead checking if there is an empty line within the board.
The text was updated successfully, but these errors were encountered:
Currently, a tie is checked through the
check_draw()
function. This works by checking if there are empty positions within the board.We can improve this through checking if it is possible for a player to win, which can be done through a modified version of the win check algorithms, instead checking if there is an empty line within the board.
The text was updated successfully, but these errors were encountered: