Alternative Tic-Tac-Toe game
- Two players, X and O, take turns marking the spaces in a HxW grid
- First turn can be anywhere in a grid
- All next turns have to mark only space near already marked spaces (by X or O)
- The player who succeeds in placing two own marks between one or more empty spaces in a horizontal or vertical row wins the game
~$python3 tic-tac-toe.py [height] [width] [h|c] [h|c]
- width and height >= 3
- two last arguments are for defining player1 and player2
- h is for human and c is for computer