Skip to content

yellowsman/sieve_of_eratosthenes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sieve

Implementation of "Sieve of Eratosthenes" by Elixir.

Usage

iex> primes = Sieve.make(100)
iex> Sieve.is_prime?(3, primes)
true
iex> Sieve.is_prime?(8, primes)
false

About

Implementation of Eratosthenes Sieve by Elixir.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages