https://github.com/lnsp/aoc-2022
Solutions for Advent of Code 2022 in Rust
https://github.com/lnsp/aoc-2022
Last synced: about 1 year ago
JSON representation
Solutions for Advent of Code 2022 in Rust
- Host: GitHub
- URL: https://github.com/lnsp/aoc-2022
- Owner: lnsp
- License: mit
- Created: 2022-12-06T20:01:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-22T00:28:14.000Z (over 3 years ago)
- Last Synced: 2025-02-11T16:43:07.725Z (over 1 year ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022
This repository contains solutions for Advent of Code 2022 in Rust. For most problems, only a single binary is present, although if the second problem presents a major variation on the first problem, there may be a binary called `XXb` (e.g. `03` and `03b`).
> Disclaimer: I'm still very new to Rust and all of this has been solely created for learning purposes. I expect all of the code to have major mistakes in terms of style.
## Usage
To run a solution for the problem of day `XX`, use
```bash
cargo run --bin XX
```