Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omentic/aoc
Yearly Advent of Code work.
https://github.com/omentic/aoc
advent-of-code nim python rust
Last synced: 5 days ago
JSON representation
Yearly Advent of Code work.
- Host: GitHub
- URL: https://github.com/omentic/aoc
- Owner: omentic
- License: 0bsd
- Created: 2020-06-23T18:56:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-01T07:31:43.000Z (11 months ago)
- Last Synced: 2024-10-11T03:14:00.570Z (28 days ago)
- Topics: advent-of-code, nim, python, rust
- Language: Nim
- Homepage:
- Size: 191 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent of code
Yearly Advent of Code work.
## 2023 ⭐ 2/2
```bash
# Nim
cd 2023
nim c -r nim/day01.nim input/day01.txt
```## 2022 ⭐ 33/50
```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 ⭐ 41/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
```