Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ranfdev/aoc_2022
https://github.com/ranfdev/aoc_2022
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ranfdev/aoc_2022
- Owner: ranfdev
- Created: 2022-12-02T20:24:38.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-23T23:31:27.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T14:06:15.549Z (about 2 months ago)
- Language: Rust
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to use
```
# install nix
# open an environment with all the needed tools
nix develop
# fetch the input file, create the binary file for the day from src/template.rs
cargo run --bin fetch_challenge 03
# Edit the file src/bin/d03.rs to solve the challenge.# Get the output with
cargo run --bin src/bin/d03.rs < inputs/03.txt
```