Welcome to my Advent of Code repository! ๐ Each December, coders worldwide come together for a holiday-themed coding challenge, and this repo contains my solutions to the puzzles.
Advent of Code is an annual set of Christmas-themed programming puzzles released daily from December 1st to December 25th. Each day unlocks a new problem to solve. It's a very fun way to:
- Sharpen your programming skills ๐ง
- Explore new algorithms and data structures ๐
- Compete with friends or the people worldwide ๐ฎ
- Celebrate the holidays! ๐
Check out the challenges at Advent of Code.
Each day's puzzle solution is organized in its own folder:
๐ adventOfCode
โโโ year/
โโโ โโโ day01/
โ โโโ โโโ input.txt # Puzzle input
โ โโโ โโโ day1.X # Python solution
โ โโโ โโโ day1-challenge.X # Python solution for the challenge
โโโ โโโ day02/
โ โโโ ...
...
-
Clone this repository:
git clone https://github.com/TheSergioHenrique/adventOfCode.git cd adventOfCode
-
Run the solution for a specific day(If I solved it in python lol):
python src/dayXX/dayX.py