Welcome to my repository for the Advent of Code 2025! This repository contains my personal solutions to the puzzles from this year's Advent of Code, all written in Python. You can find more about Advent of Code here.
Advent of Code is an annual event that presents programmers with daily puzzles throughout December. Each puzzle encourages creative problem-solving and coding skills, providing a fun way to sharpen your programming knowledge during the holiday season.
This repository showcases my approaches and solutions to the puzzles I worked on.
The repository is organized as follows:
advent_of_code_2025/
│
├── day01_part1.py # Solution for Day 1, Part 1
├── day01_part2.py # Solution for Day 1, Part 2
├── day02_part1.py # Solution for Day 2, Part 1
├── day02_part2.py # Solution for Day 2, Part 2
│
└── README.md # This README file
Each Python file corresponds to a specific day's challenge with both parts labeled appropriately.
To run the solutions, ensure you have Python 3.x installed. You can check your Python version by running:
python --versionIf you need to install Python, you can download it from python.org.
To run a specific day's solution, you can execute the desired Python file. For example, to run the first part of Day 1:
python day01_part1.py input_fileYou can similarly run the second part with:
python day01_part2.py input_fileThis repository is licensed under the MIT License. See the LICENSE file for more information.
Enjoy coding and happy holidays! 🎄