https://github.com/ranfdev/aoc_2022
https://github.com/ranfdev/aoc_2022
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ranfdev/aoc_2022
- Owner: ranfdev
- Created: 2022-12-02T20:24:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-23T23:31:27.000Z (over 2 years ago)
- Last Synced: 2025-02-12T05:14:51.489Z (5 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
```