ProjectEuler implementations in rust :heart:
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:
1. Multiples of 3 and 5 cargo test --features pe_0001
1. Even Fibonacci numbers cargo test --features pe_0002
1. Largest prime factor cargo test --features pe_0003