ProjectEuler implementations in rust ❤️
Each problem is implemented in pe_{number}.rs
file. To see the results of the corresponding problem use cargo test --features pe_{number}
command.
List of implemented solutions:
- Multiples of 3 and 5
cargo test --features pe_0001
- Even Fibonacci numbers
cargo test --features pe_0002
- Largest prime factor
cargo test --features pe_0003