Fizz buzz, test case #1 is complete but test case#2 is locked. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Fizz buzz, test case #1 is complete but test case#2 is locked.

Unable to open test case #2 in python

2nd Dec 2020, 3:21 PM
Chaithra Gururaj
Chaithra Gururaj - avatar
2 Answers
+ 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)
2nd Dec 2020, 3:26 PM
Chaithra Gururaj
Chaithra Gururaj - avatar
+ 3
Yes, case sensitive! Thank you... Its done. But still I can see that test case#2 is locked.
2nd Dec 2020, 3:31 PM
Chaithra Gururaj
Chaithra Gururaj - avatar