An open API service indexing awesome lists of open source software.

https://github.com/fliiiix/sieveoferatosthenes

The sieve of Eratosthenes (in rust!)
https://github.com/fliiiix/sieveoferatosthenes

algorithms rust sieve-of-eratosthenes

Last synced: 29 days ago
JSON representation

The sieve of Eratosthenes (in rust!)

Awesome Lists containing this project

README

        

The sieve of Eratosthenes (in rust!)
=========================

In mathematics, the sieve of Eratosthenes is a simple,
ancient algorithm for finding all prime numbers up to any given limit. (source: [wikipedia](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes))

Change `max_number` to controll the limit.