diff --git a/python/15-sieve-of-eratosthenes/README.md b/python/15-sieve-of-eratosthenes/README.md index e129e41..969312b 100644 --- a/python/15-sieve-of-eratosthenes/README.md +++ b/python/15-sieve-of-eratosthenes/README.md @@ -3,10 +3,10 @@ Sieve of Eratosthenes The [Sieve of Eratosthenes](http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes) is an algorithm used to determine all the prime numbers below a given number. -###Pseudocode +#### Pseudocode Use the wikipedia explanation above (under the "Example" header) to write some pseudocode to solve this problem. Here is a [pseudocode refresher](http://www.unf.edu/~broggio/cop2221/2221pseu.htm). Write this in comments at the top of the sieve.py file. -###Solve in Python +#### Solve in Python -Write a function that implements this algorithm to determine all the prime numbers below a given number. The program should take a number as an argument, and return an array of all the primes. \ No newline at end of file +Write a function that implements this algorithm to determine all the prime numbers below a given number. The program should take a number as an argument, and return an array of all the primes.