This repository contains my solutions for the Everybody Codes event.
Everybody Codes is an annual coding challenge that runs throughout November, featuring daily programming puzzles released Monday to Friday. Each quest challenges your problem-solving skills and algorithmic thinking.
Overall: 52/54 parts solved (96%)
████████████████████ 9/9 parts solved (100%)
███████████████████░ 43/45 parts solved (96%)
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 quest structure, use the new_quest.sh script:
./new_quest.sh <year> <event|story> <quest>Example:
./new_quest.sh 2025 event 1This will create:
- A folder structure:
2025/event/quest01/ main.pywith a template for part 1, part 2 and part 3input01.txt,input02.txt,input03.txtfor the quest inputinput_sample01.txt,input_sample02.txt,input_sample03.txtfor sample/test input
You can run the solutions:
python3 -m 2025.event.quest01.mainReplace 2025 with the desired year and quest01 with the specific quest 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