https://github.com/datamine/minimax-tictactoe
https://github.com/datamine/minimax-tictactoe
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/datamine/minimax-tictactoe
- Owner: Datamine
- Created: 2015-09-13T06:21:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-13T18:50:19.000Z (over 10 years ago)
- Last Synced: 2025-01-19T06:46:27.729Z (over 1 year ago)
- Language: Python
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MiniMax TicTacToe
An improved version of a TicTacToe game I built for an AI/ML class back in Spring 2013.
Run with `python TicTacToe.py.` Written in Python 2.7.10 and requires only the standard library.
I could've made this neater (e.g. written in curses for a better interface), but the point of this program
was the minimax algorithm, not the cosmetics.
ToDo: add alpha-beta pruning (e.g. for symmetry) to improve performance.