Summation of Primes
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trivernis 3cb5f9fe26 Replace loop with iteration over receiver 4 years ago
src Replace loop with iteration over receiver 4 years ago
.gitignore Add program to calculate primes 4 years ago
Cargo.lock Change project name 4 years ago
Cargo.toml Change project name 4 years ago
LICENSE Add program to calculate primes 4 years ago
README.md Update Readme 4 years ago

README.md

Euler Problem 10 - Summation of Primes

The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.

Find the sum of all the primes below two million.

Usage

# compile
cargo build --release

# run
./target/release/euler-10