diff options
author | j-james | 2022-12-05 11:42:36 +0000 |
---|---|---|
committer | j-james | 2022-12-05 11:42:36 +0000 |
commit | fe058785928ced98a6ce81ea12fdda517037ecd9 (patch) | |
tree | 2e1ce7f6f87aa8617ce4aca2dc2011b18aaea9a1 | |
parent | 8ebbb44dd19639cba8e25aaba5ffe00ba957c58f (diff) |
Update README
-rw-r--r-- | README.md | 55 |
1 files changed, 55 insertions, 0 deletions
@@ -1 +1,56 @@ # advent of code + +Yearly Advent of Code work. + +## 2022 ⭐ 10/10 + +```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 ⭐ 37/50 + +```bash +# Nim +cd 2020 +choosenim 1.6.10 +nim compile --run one.nim input/one.txt +``` + +## 2019 ⭐ 10/50 + +```bash +cd 2019 + +# Go +go run one.go input/one.txt + +# Nim +nim compile --run one.nim input/one.txt +``` + +## 2018 ⭐ 6/50 + +```bash +# Python +cd 2018 +python3 01.py input/01.txt +``` |