Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thiskevinwang/advent-rust
- Owner: thiskevinwang
- Created: 2022-12-15T02:08:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-19T16:06:48.000Z (almost 2 years ago)
- Last Synced: 2024-12-17T17:02:55.500Z (about 2 months ago)
- Topics: advent-of-code, advent-of-code-2022, rust
- Language: Rust
- Homepage:
- Size: 77.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```