A small Streamlit puzzle game inspired by LinkedIn's new Puzzle Game, now on an 8x8 board.
Each new game starts with a fresh random puzzle.
Each colored number must become one axis-aligned rectangle.
The rectangle must contain exactly as many cells as the number shown.
When every cell in the 8x8 board is covered without overlaps, the puzzle is solved automatically.
- Select a clue from the dropdown.
- Choose one of the valid rectangles shown for that clue.
- Click
Place Rectangleto commit the move. - Use
Clear Selected Clue,Undo,Reset, andNew Gameas needed.
pip install -r requirements.txt
streamlit run streamlit_app.pyThe shared game logic lives in patches_core.py.