0
Fizz buzz, test case #1 is complete but test case#2 is locked.
Unable to open test case #2 in python
5 Réponses
+ 3
n=int(input())
for x in range(1,n,2):
if x%3==0 and x%5==0:
print("sololearn")
elif x%3==0:
print("Solo")
elif x%5==0:
print("Learn")
else:
print(x)
+ 3
Yes, case sensitive! Thank you... Its done. But still I can see that test case#2 is locked.