Closed test cases in the activity challenge | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Closed test cases in the activity challenge

Why is some of the test cases closed?

17th Feb 2020, 2:00 PM
ghanem altamimi
ghanem altamimi - avatar
3 Answers
+ 2
ghanem altamimi in "Code Coaches" every problem is enclosed with hidden cases so it's interesting to solve those challenges without any hint as if they are open to see you can easily crack the challenge by using switch cases or if else condition so they are hidden to make the things works interesting
17th Feb 2020, 2:03 PM
DishaAhuja
DishaAhuja - avatar
0
DishaAhuja So you mean even if i fulfilled the requirements of the code coaches I'd still not pass the test because there is a more preferable way to solve the problem such as if else or switch cases?
17th Feb 2020, 2:20 PM
ghanem altamimi
ghanem altamimi - avatar
0
If all test cases were open, you would be able to pass all cases without actually solving the problem. Knowing everything that goes in and out, you would easily write a code that goes: inp = input() if inp == "a": print("b") elif inp == "c": print("d") ... and get all the right outputs without even bothering to solve the problem.
17th Feb 2020, 2:36 PM
Russ
Russ - avatar