Skip to content

sasmithaK/extended-tik-tak-toe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 

Repository files navigation

extended-tik-tak-toe

My final goal is to create a Super Tik Tac Toe game, an extended version of Tik Tak Toe which I came across in a Michael Stevens(from Vsauce) video.

https://youtube.com/shorts/_Na3a1ZrX7c?feature=shared


Level 1

You can play a basic game cycle in the CLI

  • (reset mechanism)
 
  //This is how cells are arranged
  +-----+-----+-----+ 
  |  1  |  2  |  3  | 
  +-----+-----+-----+ 
  |  4  |  5  |  6  |  
  +-----+-----+-----+ 
  |  7  |  8  |  9  | 
  +-----+-----+-----+ 
  

  // example scenario :
  
X input : 1
  +-----+-----+-----+ 
  |  X  |  .  |  .  | 
  +-----+-----+-----+ 
  |  .  |  .  |  .  | 
  +-----+-----+-----+ 
  |  .  |  .  |  .  | 
  +-----+-----+-----+ 

0 input : 6 
  +-----+-----+-----+ 
  |  X  |  .  |  .  | 
  +-----+-----+-----+ 
  |  .  |  .  |  .  | 
  +-----+-----+-----+ 
  |  .  |  0  |  .  | 
  +-----+-----+-----+ 

My next goal is to implement a GUI

Desktop - 1

About

Super Tik Tak Toe

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages