# advent of code Yearly Advent of Code work. ## 2022 ⭐ 22/22 ```bash # Nim cd 2022 cd nim/day01 choosenim stable nim compile --run src/main.nim input.txt # Rust cd ../../ cd rust/day01 rustup toolchain default nightly cargo run input.txt ``` ## 2021 ⭐ 18/50 ```bash # Python cd 2021 python3 01.py input/01.txt ``` ## 2020 ⭐ 38/50 ```bash # Nim cd 2020 choosenim 1.6.10 nim compile --run one.nim input/one.txt ``` ## 2019 ⭐ 10/50 ```bash # Go cd 2019 go run go/day01.go input/day01.txt # Nim cd .. nim compile --run nim/day01.nim input/day01.txt ``` ## 2018 ⭐ 6/50 ```bash # Python cd 2018 python3 01.py input/01.txt ```