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.
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 | . | +-----+-----+-----+