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
Solve day 4
1 week ago
..
src Solve day 4 1 week ago
test_inputs Solve day 4 1 week ago
Cargo.lock Solve day 4 1 week ago
Cargo.toml Solve day 4 1 week ago
README.md Solve day 4 1 week ago
input.txt Solve day 4 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.