https://github.com/borfast/ttt
Very simple Tic-Tac-Toe game in C++
https://github.com/borfast/ttt
Last synced: 22 days ago
JSON representation
Very simple Tic-Tac-Toe game in C++
- Host: GitHub
- URL: https://github.com/borfast/ttt
- Owner: borfast
- License: mit
- Created: 2014-08-23T07:25:51.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-06-19T17:35:19.000Z (about 10 years ago)
- Last Synced: 2025-02-27T02:47:10.366Z (over 1 year ago)
- Language: C++
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A simple Tic-Tac-Toe game written in C++.
Started back in 2009, later moved to Github from Bitbucket.
The implementation borrowed a few ideas from the Tic-Tac-Toe game in chapter
9 of "Invent Your Own Comptuer Games with Python, 2nd Edition"
http://inventwithpython.com/chapter9.html
In particular, the notSoStupidMove is entirely based on the AI of that game.