This is a simple Flask wrapper for a solver for the numbers part of the Countdown game show. The motivation behind this project was curiosity.
- Solve the numbers round of Countdown with ease.
- Flask-based web interface for easy interaction.
- Python 3.12 or later
- Dependencies listed in
requirements.txt
-
Clone the repository:
git clone https://github.com/AlexanderHS/countdown_maths_solver.git cd countdown_maths_solver -
Create and activate a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the Flask application:
python app.py
-
Open your web browser and go to
http://127.0.0.1:8045to access the application. -
Enter the numbers and target value as prompted to get solutions for the Countdown numbers game.
This project is licensed under the MIT License. See the LICENSE file for details.
For any questions or support, please contact Alex Hamilton-Smith at alexhamiltonsmith [at] pm.me.
- The Countdown game show for the inspiration.
- Flask for the web framework.
