Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.24 KB

README.md

File metadata and controls

40 lines (25 loc) · 1.24 KB

Advent of Code 2024 🎄

Welcome to my Advent of Code 2024 solutions repository!

Advent of Code is an annual coding challenge that runs throughout December. Each day, a new puzzle is released with a festive twist, offering a fun way to practice problem-solving and sharpen coding skills.


🛠️ Languages Used

  • C++: My primary language for solving most puzzles.
  • Python: Used for problems requiring arbitrary precision.

📂 Repository Structure

AdventOfCode2024/
├── Solutions/
│    ├── Day01/
│    │     ├── day1-part1.cpp
│    │     └── day1-part2.cpp
│    └── Day02/
│           ├── day2-part1.cpp
│           └── day2-part2.cpp
├── .gitignore
└── README.md  # This file

Each folder under Solutions corresponds to a day of the challenge. Solutions for each part of the day's puzzle are stored in separate files.


⚠️ Disclaimer

The solutions in this repository are intended for personal learning and practice. They prioritize competitive programming techniques and may not follow software engineering best practices. Feel free to use them as inspiration for your own Advent of Code journey!