This repository contains solutions to the Advent of Code puzzles.
Year | C++ | Python | Link to folders | Link to README.md |
---|---|---|---|---|
2023 | 1-25 | - | Link | Link |
2022 | 1-25 | - | Link | Link |
2021 | 1-25 | - | Link | Link |
2020 | 1-25 | 1-25 | Link | Link |
2019 | 1-25 | 1-7 | Link | Link |
2018 | 1-25 | - | Link | Link |
2017 | 1-25 | - | Link | Link |
2016 | 1-25 | - | Link | Link |
2015 | 1-25 | - | Link | Link |
To run any day's/puzzle's solution, use the following command:
# To compile
# <clang++/g++> <year>/cpp/day_<##><a/b>.cpp -o <output file>
# To run
# ./<output file> <path to input file>
# ./<output file> <year>/<input/sample_input>/day_<##>_<input/sample_input>
# Sample
g++ 2016/cpp/day_01a.cpp -o a.out
./a.out 2016/input/day_01_input