Enhancement of validation process

Hello Codingamers,

It has a time that’s bothering me.
However, this time I decided to present my opinion.
First, to give my congratulations to Codingame team for improvement in editor, that allows to view and edit input passed for the algorithm.
It has been very useful!

But, why not allow to see inputs passed for the validator of the solution too!
The title of the test cases does not always clarify the entrance, and I think some like me are being harmed.
Look…

It’s Dwarfs standing on the shoulders of giants puzzle.

Showing the input for the validators would hugely help hardcoding: you could submit your code once, look at the validators, do something like

if (input == ...)
  print ...
else if (input == ...)
  print ...

and get a 100% without actually solving the puzzle.