🗿
Coding
Pinned Loading
-
Returns list of all prime numbers up...
Returns list of all prime numbers up to and including 'n' maximum bound 1def prime(n):
2sieve = [True for x in range(n+1)]
3primes = []
4for num in range(2, n+1):
5if sieve[num] == True:
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.