Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 932 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 932 Bytes

tic-tac-toe-ai

  • A console-based Tic-Tac-Toe game implemented in Go.
  • Features an unbeatable AI powered by the Minimax algorithm.
  • The AI agent is designed to either win or draw against the human player.
  • Ensures a challenging and engaging experience.

Installation

git clone [email protected]:PritomKarmokar/tic-tac-toe-ai.git
cd tic-tac-toe-ai

Run the game

go run game/main.go

Resources I find helpful:

Additional Implementation

  • I have also implemented a simpler version of this tic-tac-toe game which was implemented in java
  • You can check out here : tic-tac-toe