aboutsummaryrefslogtreecommitdiff

advent of code

Yearly Advent of Code work.

2023 ⭐ 2/2

# Nim
cd 2023
nim c -r nim/day01.nim input/day01.txt

2022 ⭐ 33/50

# 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

# Python
cd 2021
python3 01.py input/01.txt

2020 ⭐ 41/50

# Nim
cd 2020
choosenim 1.6.10
nim compile --run one.nim input/one.txt

2019 ⭐ 10/50

# 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

# Python
cd 2018
python3 01.py input/01.txt