Write a function to compute the prime numbers up to a given value. The function is named sieve and it will take an integer value as parameter. The function should return a list that contains all prime numbers up to value, the numbers in the returned list must be in ascending order.
The purpose of this assignment is the application of queues. A prime number is a positive integer other than 1 and is divisible only by 1 and itself. For example, 7 is a prime number because the only positive factors of 7 are 1 and 7. On the other hand, 12 is not a prime […]