Home

Awesome

🎄 Advent of Code 🎄

My solutions to the Advent of Code puzzles in Python and some C++.

About Advent of Code

Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as interview prep, company training, university coursework, practice problems, a speed contest, or to challenge each other.

Collected Stars

YearStarsLanguages
202344/50 ⭐Python, C++
202224/50 ⭐Python
202111/50 ⭐Python
202035/50 ⭐C++

Repository Structure

The repository is organized by year, with each year containing folders for individual days. Depending on the puzzle, solutions for part one and part two may be divided into separate files.

Note: Input files are not included in the public repository.

AdventOfCode
|-- year
|   |-- day_01
|   |   |-- puzzle_name_1.py
|   |   |-- puzzle_name_2.py
|   |
|   |-- day_02
|   |   |-- puzzle_name.cpp
|   |   |-- puzzle_name.h
|   |   |-- puzzle_name.py
|   |
|   |-- day_03
|   |   |... 
...