https://github.com/rhaeguard/lettertoe
tictactoe but with letters, maybe.
https://github.com/rhaeguard/lettertoe
Last synced: 11 months ago
JSON representation
tictactoe but with letters, maybe.
- Host: GitHub
- URL: https://github.com/rhaeguard/lettertoe
- Owner: rhaeguard
- Created: 2022-12-04T20:15:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-15T05:32:02.000Z (about 1 year ago)
- Last Synced: 2025-04-29T17:20:03.711Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lettertoe
### Rules
In an NxN grid (where N can be 3, 4, 5), the goal is to make as many words as possible during the game. It's a 2 player game. Each player has the right to put a single letter onto the board. For each word a player makes, they get a point.
We check in these directions:
- VERTICALLY 2*N columns
- HORIZONTALLY 2*N lines
- DIAGONALLY 4 lines
The numbers are doubled because both directions of a column, line or a diagonal line can be used to construct words. This means that if the N lettered character sequence is a word in both ways it'll count twice (e.g, live - evil).
The game ends when all the board slots have been filled with letters.