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.
Alex Selimov
0fc1e2b2a3
|
1 week ago | |
---|---|---|
.. | ||
src | 1 week ago | |
test_inputs | 1 week ago | |
Cargo.lock | 1 week ago | |
Cargo.toml | 1 week ago | |
README.md | 1 week ago | |
input.txt | 1 week ago |
README.md
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.