top of page
Game Designer

TIC TAC TOE

Silas Liu - Aug. 24, 2021

Python/Javascript, Search AI

Tic Tac Toe is a simple and well known game, which can be easily programmed. The code here was implemented in Python and solves the best move problem with the MiniMax algorithm, optimized with alpha-beta prunning.

​

My original code was implemented in Python and uses the Pygame library for interface. It can be accessed through my GitHub link. The code was translated to Javascript to run here in webbrowser.

bottom of page