A challenge that concludes our very first week of the Data science bootcamp @ neue fische
Developed by eburakova and ddotplus
Written by eburakova.
- Supports sqare fields size up to 31 x 31 (and up to ∞ but the visuals break)
- Uses custom emojis and symbols
Demo
tictactoe.demo.mov
Written by @ddotplus
- Supports sqare fields size up to 31 x 31 (and up to ∞ but the visuals break)
- Has options to input a saved game state, to abort the game and list out free cells
Demo
┌---┬---┬---┐
│ 1 │ 2 │ 3 │
├---┼---┼---┤
│ 4 │ X │ 6 │
├---┼---┼---┤
│ 7 │ 8 │ O │
└---┴---┴---┘
User-1 (X):
%% `a` - available positions
%% `d` - draw game status
%% `q` - quit
> please input position [1-9]: a
available positions: [1, 2, 3, 4, 6, 7, 8]
┌---┬---┬---┬---┬---┬---┐
│ O │ O │ O │ O │ O │ O │
├---┼---┼---┼---┼---┼---┤
│ 7 │ 8 │ 9 │ X │ 11│ 12│
├---┼---┼---┼---┼---┼---┤
│ 13│ 14│ X │ 16│ O │ X │
├---┼---┼---┼---┼---┼---┤
│ O │ X │ X │ O │ X │ O │
├---┼---┼---┼---┼---┼---┤
│ X │ X │ O │ X │ 29│ 30│
├---┼---┼---┼---┼---┼---┤
│ O │ X │ X │ X │ O │ X │
└---┴---┴---┴---┴---┴---┘
User-2 (O) won the game, congratulations!
Plan of the project
Development and tests