help me to solve the issue.primegeneator code has passing 3 testcases output of 4.4 th test case hidden. | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

help me to solve the issue.primegeneator code has passing 3 testcases output of 4.4 th test case hidden.

def isPrime(x): if x < 2: return False elif x == 2: return True for n in range(2, x): if x % n ==0: return False return True def primeGenerator(a, b): #your code goes here g=[] for i in range(a,b+1): if isPrime(i): yield i f = int(input()) t = int(input()) print(list(primeGenerator(f, t)))

9th Feb 2024, 1:18 AM
Voonna Gowri Ganesh
Voonna Gowri Ganesh - avatar
3 Respuestas
+ 3
Voonna Gowri Ganesh , The trick on that one is not to test the high input. For example, the primes in range(5, 11) are 5 and 7, not 11. So don't try to include 11 by adding 1 like range(5, 11+1). The variable names f and t mean from and to, but the to is not included.
9th Feb 2024, 6:31 AM
Rain
Rain - avatar
+ 2
Voonna Gowri Ganesh you added an elif which I believe is where the error arrived. This should correct it. def isPrime(x): if x < 2: return False else: for n in range(2, x): if x % n == 0: return False return True def primeGenerator(a, b): for i in range(a, b ): if isPrime(i): yield i f = int(input()) t = int(input()) print(list(primeGenerator(f, t)))
9th Feb 2024, 3:06 AM
BroFar
BroFar - avatar
+ 2
Thank you
9th Feb 2024, 12:38 PM
Voonna Gowri Ganesh
Voonna Gowri Ganesh - avatar