Tictactics is a game played on a 3x3 grid of 3x3 grids. Each 3x3 grid is a game of tic-tac-toe. The first person is free to move anywhere on the board, after that the player must move on the tic-tac-toe board that corresponds to the place her opponent chose on their last move move. Here is a better explination.
Tictactics Optimizing Machine, or TOM, is an AI that simulates and (tries to) play the game optimally. It uses the minimax to choose its moves . The game is played in a web browser using Flask, and you can play it at (https://tom.aprilsagan.net).
To run locally on a linux machine,
git clone https://github.com/april1729/TOM.git
cd TOM
export FLASK_APP application.py
flask run
Tictactics Optimizing Machine by A. Sagan is licensed under a Creative Commons Attribution 4.0 International License.