Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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/
- Host: GitHub
- URL: https://github.com/andreibarsan/2022-advent-of-code
- Owner: AndreiBarsan
- License: mit
- Created: 2022-12-02T04:23:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-10T16:32:50.000Z (about 2 years ago)
- Last Synced: 2023-03-15T23:10:15.516Z (almost 2 years ago)
- Language: Rust
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)