Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhrcook/advent-of-code-2022-rust
Advent of Code 2022 solutions in Rust
https://github.com/jhrcook/advent-of-code-2022-rust
advent-of-code-2022 rust
Last synced: about 2 months ago
JSON representation
Advent of Code 2022 solutions in Rust
- Host: GitHub
- URL: https://github.com/jhrcook/advent-of-code-2022-rust
- Owner: jhrcook
- Created: 2023-11-01T11:01:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-30T19:51:14.000Z (about 1 year ago)
- Last Synced: 2024-10-12T16:53:17.165Z (3 months ago)
- Topics: advent-of-code-2022, rust
- Language: Rust
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2022 solutions in Rust
**My solutions to the [Advent of Code 2022](https://adventofcode.com/2022) using Rust.**
[![advent-of-code](https://img.shields.io/badge/Advent_of_Code-2022-F80046.svg?style=flat)](https://adventofcode.com)
[![rust](https://img.shields.io/badge/Rust-1.73.0-000000.svg?style=flat&logo=rust)](https://www.python.org)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)| Day | Code | Stars |
| ---:| -------------------------------------------------------- | ----- |
| 1 | [src/solutions/day01.rs](src/solutions/day01.rs) | ⭐️⭐️ |
| 2 | [src/solutions/day02.rs](src/solutions/day02.rs) | ⭐️⭐️ |
| 3 | [src/solutions/day03.rs](src/solutions/day03.rs) | ⭐️⭐️ |
| 4 | [src/solutions/day04.rs](src/solutions/day04.rs) | ⭐️⭐️ |
| 5 | [src/solutions/day05.rs](src/solutions/day05.rs) | ⭐️⭐️ |
| 6 | [src/solutions/day06.rs](src/solutions/day06.rs) | ⭐️⭐️ |
| 7 | [src/solutions/day07.rs](src/solutions/day07.rs) | ⭐️⭐️ |
| 8 | [src/solutions/day08.rs](src/solutions/day08.rs) | ⭐️⭐️ |
| 9 | [src/solutions/day09.rs](src/solutions/day09.rs) | ⭐️⭐️ |
| 10 | [src/solutions/day10.rs](src/solutions/day10.rs) | ⭐️⭐️ |## Setup
Clone the repo:
```bash
git clone [email protected]:jhrcook/advent-of-code-2022-rust.git
cd advent-of-code-2022-rust
```## Execute puzzles
```bash
cargo run --release
```