EdoardoLaGreca / Project-Euler-Rust

Solutions to the Project Euler's problems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project-Euler-Rust

(Project Euler's logo)
Solutions to the Project Euler's problems written in Rust.
You can find the full problems list here

Repo structure:

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.

About

Solutions to the Project Euler's problems.


Languages

Language:Rust 100.0%