Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 373 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 373 Bytes

countdown_game_number_solver

Jupyter notebook containing a brute-force approach of solving the Number puzzle portion of the British game show Countdown

The notebook uses itertools to get all possible permutations of the numbers and operators. It then looks for mathematical equations that equates to the target number.

Uses f-Strings which is a Python >=3.6 feature.