1
1
Fork
You've already forked prime-rust
0
Playing with prime numbers and rust
  • Rust 100%
2022年08月23日 22:12:03 +01:00
src WIP 2022年08月23日 22:12:03 +01:00
.gitignore Sorting gitignore 2021年03月31日 08:09:17 +01:00
Cargo.toml WIP 2022年08月23日 22:12:03 +01:00
README.md Sorting gitignore 2021年03月31日 08:09:17 +01:00

Prime numbers up to n

I sort of set myself this kata as I'm slowly working my way through the Rust Book and fancied playing around with some of the things I've learned.

This takes a number (n) from the user and responds with both all the prime numbers from 0 to n, as well as the nth prime number.

I built this following TDD, using Rust's in-built testing suite.