projecteuler_rs 0.1.0

Project Euler solutions implemented in Rust
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 10.65 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 977.74 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • SiyahaS/projecteuler_rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • SiyahaS

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