Web app that generates the solutions for Apple's Quartiles game.
Users can manually enter tiles or upload a screenshot of the puzzle, and the app uses OCR to extract data and generate possible solutions.
Upload screenshots (JPG, PNG)
Automatically extract tile data using EasyOCR.
Manually input tile data if you prefer.
Solve the puzzle and view possible solutions.
Web interface with Flask.
-
Clone this repository:
git clone https://github.com/YOUR_GITHUB_USERNAME/quartiles-solver.git cd quartiles-solver -
Optional - Create a venv python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Installation dependencies pip install -r requirements.txt
-
Run python app.py
-
Open browser and go to http://127.0.0.1:5000/
Python 3.x Flask EasyOCR OpenCV (cv2)
The word list is based on Scrabble's official dictionary; Apple’s is not publicly available.
Some rare words may be missing or additional solutions might appear.
MIT License