Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thiskevinwang/advent-rust

Last year, I gave at day 6 in `go`... This year I hope to last a tad bit longer
https://github.com/thiskevinwang/advent-rust

advent-of-code advent-of-code-2022 rust

Last synced: 25 days ago
JSON representation

Last year, I gave at day 6 in `go`... This year I hope to last a tad bit longer

Awesome Lists containing this project

README

        

# Advent of Code in Rust

```bash
cargo run
# https://adventofcode.com/2022/day/1
# ==> 72511
```

```bash
# copying the template
cp -R src/2022/template/day{{n}}/ src/2022/day4
```

---

#### Notes

Switching rust versions

```bash
rustup toolchain list

# stable-aarch64-apple-darwin
# nightly-aarch64-apple-darwin (default)

rustup default stable-aarch64-apple-darwin
```