This repo contains Rust solutions to coding challenges 1-48 in The Pragmatic Programmers: Exercises for Programmers.
To run any single solution, use the following command:
cargo run --bin e<N>
where <N>
is the number of the exercise you want to run. Likewise, you can run
all unit tests via cargo test
or execute a single exercise's unit tests via
cargo test --bin e<N>
.