Question: Write a Python function called sieve_of_E_sum that takes an integer argument N and uses the Sieve of Eratosthenes to return a tuple of both the

Write a Python function called sieve_of_E_sum that takes an integer argument N and uses the Sieve of Eratosthenes to return a tuple of both the number of primes less than or equal to N as well as the sum of all primes less than or equal to N (in that order). Example: sieve-of-E-sum(10) = (4, 17) Example: sieve-of-E-sum( 100000) = (9592, 45396537) This problem has a timeout limit of 1 second and a memory usage limit of 1MB, so be sure to write semi-efficient code! The values of N in each test-case satisfy SN1000000. For example: Test print(sieve_of_E_sum(10))(4, 17) print(sieve_of_E_sum (1000)) (168, 76127) Result
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
