This is a simple implementation for Tic Tac Toe game in java It has four playing modes:
- User vs User
- User vs AI
- User vs CPU ( Uses random locations for turn )
- CPU vs AI
// Updates in AI Algorithm are welcome for changes
Run the following commands in a terminal
- javac GAME.java
- java GAME
Requires jdk(>=1.8.0) package installed and path variable set ( for windows pc )
The End