Start a local server to play Tic-Tac-Toe:
flask runRun unit tests:
python -m unittest lib_test.pyGenerate all possible Tic-Tac-Toe boards through brute force and check that the GeeksForGeeks implementations of Minimax and Alpha-Beta pruning give the same move for each board as the find_best_move method in lib.py:
python compare_strategies.py