projecteuler_rs 0.1.0

Project Euler solutions implemented in Rust
Documentation

projecteuler-rs

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
  2. Even Fibonacci numbers cargo test --features pe_0002
  3. Largest prime factor cargo test --features pe_0003