This repository contains my solutions for Flip Flop Codes.
Flip Flop Codes is a coding puzzle series, with each puzzle split into three parts of increasing difficulty.
Overall: 16/21 parts solved (76%)
████████████████░░░░░ 16/21 parts solved (76%)
python3 -m venv .venvOn macOS/Linux:
source .venv/bin/activateOn Windows:
.venv\Scripts\activatepip install -r requirements.txtDeactivating the Virtual Environment
deactivateTo create a new puzzle structure, use the new_puzzle.sh script:
./new_puzzle.sh <year> <puzzle>Example:
./new_puzzle.sh 2025 1This will create:
- A folder structure:
2025/puzzle01/ main.pywith a template for part 1, part 2 and part 3input.txtfor the puzzle inputinput_sample.txtfor sample/test input
You can run the solutions:
python3 -m 2025.puzzle01.mainReplace 2025 with the desired year and puzzle01 with the specific puzzle you want to run.
To update the progress summary in this README after solving new parts, run the generate_readme.py script:
python3 generate_readme.py