Welcome to my Advent of Code repository! This repository contains my solutions for the annual Advent of Code programming challenges, spanning all problems from Day 01 to Day 25.
Advent of Code is an annual series of programming puzzles released daily from December 1st to 25th. These challenges are designed to improve problem-solving and coding skills while providing a festive way to code during the holiday season.
Each day's challenge is organized into its own folder, containing:
input.txt
: The input data for the challenge.solution.py
(or relevant file): My solution to the problem.- Additional files as needed (e.g., explanatory comments, alternate approaches).
The structure is as follows:
├── Day 1/ │ ├── input.txt │ └── solution.py
├── Day 2/ │ ├── input.txt │ └── solution.py
- Clone the repository:
git clone https://github.com/arhamansari11/advent_of_Code.git
- Move into the project directory:
cd advent-of-code
- Navigate to the specific day's folder:
cd "Day-01"
- Run the Solution:
python solution.py
- Efficient Solutions: Solutions are optimized for performance and readability.
- Dynamic Inputs: All solutions are designed to work with different inputs.
- Commented Code: Each solution is well-documented for clarity.
- Diverse Approaches: Some days include multiple solutions showcasing various algorithms.