Advent of Code solutions
year | language | build command | example run command |
---|---|---|---|
2020 | python | python 2020/day01/day01.py |
|
2021 | rust | cargo run --manifest-path=2021/Cargo.toml --bin day01 |
|
2022 | nim | nim r 2022/day01/main.nim < path/to/inputFile |
|
2023 | c++ | mkdir 2023/build && cd 2023/build && cmake .. && cmake --build . |
./advent_of_code 1 < path/to/inputFile |