2022-12-02 00:58:50 +01:00
|
|
|
# Calorie Counting
|
2022-12-02 01:24:22 +01:00
|
|
|
Implementation of [this task](./task.md) that started clean but ended up in a lot of [bodging](https://en.wiktionary.org/wiki/bodge).
|
|
|
|
|
|
|
|
<sup>and is very much not idiomatic rust</sup>
|
2022-12-02 00:01:24 +01:00
|
|
|
|
2022-12-02 00:58:50 +01:00
|
|
|
## Usage
|
|
|
|
`cargo run --release -- --input <Path to file with inputs>`
|
2022-12-02 01:24:22 +01:00
|
|
|
|
|
|
|
Alternative
|
|
|
|
```sh
|
|
|
|
cargo install --release .
|
|
|
|
calorie_counting -i <Path to file with inputs>
|
|
|
|
```
|