Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andreibarsan/2022-advent-of-code

🤶 Continuing to learn Rust with AoC 2022 ☃️ https://adventofcode.com/2022/
https://github.com/andreibarsan/2022-advent-of-code

Last synced: 20 days ago
JSON representation

🤶 Continuing to learn Rust with AoC 2022 ☃️ https://adventofcode.com/2022/

Awesome Lists containing this project

README

        

# ❄️ Andrei's 2022 Advent of Code ❄️

[![Build Status](https://github.com/AndreiBarsan/2022-advent-of-code/actions/workflows/aoc-ci-build.yml/badge.svg)](https://github.com/AndreiBarsan/2022-advent-of-code/actions/workflows/aoc-ci-build.yml)

## Learning Goals

- [ ] Finish the first 12 days for Rust practice
- [ ] Rust <> C++ interop
- [ ] Actually understand Rust-y implementations of cyclic data structures

## Running the Code

Assuming [Cargo](https://doc.rust-lang.org/rust-by-example/cargo.html) has been set up, to run a problem, simply use
the following:

```
cargo run --release --bin
```

The above should automatically build the code with its dependencies, and run the appropriate problem.

## See Also

- [My Advent of Code 2021 Solutions](https://github.com/AndreiBarsan/2021-advent-of-code/)