Hitori game in Python, made as a class project (NSI)
The objective is to eliminate some squares to transform the grid to a state where all the three rules are respected
Red cell: Eliminated
Green cell: Considered as safe
White cell: Neutral
- Left -> Confirm and check if you won
- Middle -> Pause the game & timer
- Right -> Click to reset all cells to white, restart after winning or Shift+Click to get another board and
- No row or column can have more than one occurence of any number
- Eliminated cells cannot be horizontally or vertically adjacent (Diagonal allowed)
- All the remaining cells must be connected to each other, horizontally or vertically (No diagonal)
- pygame (Interface)
- BeautifulSoup (Scraping of the boards)
- requests (Scraping of the boards)
Thought and developed by @ZeyXs, @ghrlt and @myaalicewendy.