Solutions to the Project Euler's problems written in Rust.
You can find the full problems list here
Project-Euler-Rust/
├─ id_1_multiples_of_3_and_5/
│ ├─ Cargo.toml
│ └─ src/
│ └─ main.rs
│
├─ id_2_even_fibonacci_numbers/
│ ├─ Cargo.toml
│ └─ src/
│ └─ main.rs
│
├─ id_3_largest_prime_factor/
│ ├─ Cargo.toml
│ └─ src/
│ └─ main.rs
│
[...]
│
├─ id_x_title_of_problem/
│ ├─ Cargo.toml
│ └─ src/
│ └─ main.rs
│
├─ .gitignore
└─ README.md
NOTE: There may be extra files inside folders in addition to the ones of the structure.