Welcome to the markdown version of Tic-Tac-Toe! 🎉
- Player 1: ❌ (X)
- Player 2: ⭕ (O)
- Take turns: Each player chooses an empty square by replacing the
⬜
with either ❌ (X) or ⭕ (O). - Winning condition: Get three of your marks in a row (horizontally, vertically, or diagonally).
- Edit this file on GitHub: Click on the pencil icon in the upper-right corner of the file to make your move.
1 | 2 | 3 | |
---|---|---|---|
A | ❌ | ⬜ | ⬜ |
B | ⬜ | ⬜ | ⬜ |
C | ⬜ | ⬜ | ⬜ |
- To make a move, edit this file and replace the empty square (
⬜
) in the corresponding cell with either ❌ or ⭕. - For example, if Player 1 (❌) wants to place their mark in the middle square (B2), they would change it to this:
| | 1 | 2 | 3 |
|---|---|---|---|
| A | ⬜ | ⬜ | ⬜ |
| B | ⬜ | ❌ | ⬜ |
| C | ⬜ | ⬜ | ⬜ |