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.

16 lines
241 B
Markdown

5 years ago
# 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.
5 years ago
## Usage
```bash
# compile
cargo build --release
# run
5 years ago
./target/release/euler-10
5 years ago
```