My solutions to the Advent of Code puzzles in Python and some C++.
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.
Year | Stars | Languages |
---|---|---|
2023 | 44/50 ⭐ | |
2022 | 24/50 ⭐ | |
2021 | 11/50 ⭐ | |
2020 | 35/50 ⭐ |
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
| | |...
...