0
Code Coach Hidden Tests
Hello all. Just for curiosity, why most Test Cases are not visible when solving a Code Coach challenge?
3 Réponses
+ 4
It's to make the programmers think of "all" solutions, not just what they can immediately see/think of.
Take a simple calculator, for example. You need to add any 2 numbers, so if the programmer only thinks of 2+2, the programmer isn't thinking of the infinite possibilities of the sum.
I wrote a code that kind of illustrates this idea too:
https://sololearn.com/compiler-playground/c2H9u8pFNj7t/?ref=app
+ 3
Hey! The hidden tests in Code Coach are there to make sure your code works correctly not just on the visible examples, but also on unexpected input. It tests your solution's robustness and versatility, so it doesn’t break under any conditions
+ 1
Thank you, it's clear to me now. I didn't think as possible that one wants to cheat by reading all inputs and code a specific output for each one of them, but yes it is possible and should be prevented.
Thanks again.