Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.63 KB

README.md

File metadata and controls

47 lines (33 loc) · 1.63 KB

Advent of Code 🎄

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.

📚 About Advent of Code

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.


Repository Structure

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


How to Run Solutions on your system ?

  1. Clone the repository:
    git clone https://github.com/arhamansari11/advent_of_Code.git
    
  2. Move into the project directory:
    cd advent-of-code
    
  3. Navigate to the specific day's folder:
    cd "Day-01"
    
  4. Run the Solution:
    python solution.py
    

Features🌟

  • 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.