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!)
- Host: GitHub
- URL: https://github.com/fliiiix/sieveoferatosthenes
- Owner: fliiiix
- Created: 2019-03-04T15:42:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-04T15:43:09.000Z (about 6 years ago)
- Last Synced: 2025-02-09T22:47:15.084Z (3 months ago)
- Topics: algorithms, rust, sieve-of-eratosthenes
- Language: Rust
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.