Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nihonjinrxs/adventofcode-2022
Advent of Code 2022
https://github.com/nihonjinrxs/adventofcode-2022
Last synced: about 1 month ago
JSON representation
Advent of Code 2022
- Host: GitHub
- URL: https://github.com/nihonjinrxs/adventofcode-2022
- Owner: nihonjinrxs
- License: mit
- Created: 2022-12-01T22:56:30.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-11T19:56:37.000Z (about 2 years ago)
- Last Synced: 2024-10-21T21:39:11.794Z (2 months ago)
- Language: Rust
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022
[![Rust](https://github.com/nihonjinrxs/adventofcode-2022/actions/workflows/rust.yml/badge.svg)](https://github.com/nihonjinrxs/adventofcode-2022/actions/workflows/rust.yml)This repo contains the collection of my attempts at solving the Advent of Code 2022 challenges. I'll be starting by attempting these in Rust, but may add other languages later.
Challenge writeups are available at [the Advent of Code website](https://adventofcode.com/), but I've captured [the descriptions](/docs) and [my input files](/data) in this repo too. (The input files differ per user, so don't try and use them for your own submission!)
Hope you get the chance to figure these out too!
## Running the programs
If you want to try running these, you can do so with:
```{sh}
cargo run --
```You can find the list of program names that will work in
the `match` statement [in `src\programs.rs`](/src/programs.rs#L6).
Input files are in the `data` directory, or you can create your own.## Running the tests
You can run tests via: `cargo test`