You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
479 B

# Day 4
## Instructions
From the root directory of the crate (where this README is) just execute:
```
cargo run
```
The solution will be printed to the terminal output.
## Notes:
Implemented this using a pseudo-directed graph data structure. That took some extra time to implement but leads to a more efficient implementation.
Rust is certainly slower to develop in (the cost of all that safety) so I may swap to another one for future problems since my time is limited.