Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 530 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 530 Bytes

fcc-tictactoe-in-elm

FreeCodeCamp "Build a Tic Tac Toe game" project

Project requirements

  1. I can play a game of Tic Tac Toe with the computer.
  2. My game will reset as soon as it's over so I can play again.
  3. I can choose whether I want to play as X or O.
  4. The computer should play a perfect game (unbeatable).

Project goals

  1. Learn Elm and try FP for web development.
  2. Implement rudimentary AI (minimax algorithm) in a functional way.
  3. Learn how functional code is tested.
  4. Learn how to style Elm code.