Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 1001 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 1001 Bytes

QuantumTicTacToe

This is quantum version of traditional tic tac toe.
It is implemented by referring to this paper. Refer to the rules section in the paper.
You can play the game here. If the link is not working then run game locally by refering to this section

Locally run the game

  • Install docker. You can refer to official documentation
  • Once the docker is up and running paste the commands below in terminal.
  • Create docker image
 docker build -t quantum-tic-tac-toe https://github.com/Tarun-Kumar07/QuantumTicTacToe.git
  • Run docker image
 docker run -p 8501:8501 quantum-tic-tac-toe
  • Play the game by going to the url printed 😄.