Category:Action! Sieve of Eratosthenes: Difference between revisions

Content added Content deleted
(Created page with "== Sieve of Eratosthenes == The following module marks prime numbers using Sieve of Eratosthenes algorithm. <lang Action!>MODULE PROC Sieve(BYTE ARRAY primes INT count) C...")
 
Line 1: Line 1:
== Sieve of Eratosthenes ==
== Sieve of Eratosthenes ==

=== SIEVE.ACT ===


The following module marks prime numbers using Sieve of Eratosthenes algorithm.
The following module marks prime numbers using Sieve of Eratosthenes algorithm.