Skip to content

fimbriano/tictactoe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TicTacToe

Your goal for this project is to write a game engine for tic tac toe.

You are given the primary engine and the interface to implement. Implement the interface such that it will determine if a player has won the game, if the game has concluded in a tie, and what player won the game.

Try to do all work SOLO and look through the given code for answers to some of your questions about implementation. If you have any questions, reach out to me. Some questions i will not answer.

Here is the interface to implement.

type Engine interface {
    GameState([3][3]Piece, []Player) State
}

At the end of the week, we will get together and run our engines, test our engines, and compare our engines.

GLHF

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages