Coding Games and Programming Challenges to Code Better
Send your feedback or ask for help here!
Created by @Autismo9000,validated by @Manuel_J,@Thor37115 and @Harry.B.
If you have any issues, feel free to ping them.
Coding Games and Programming Challenges to Code Better
Send your feedback or ask for help here!
Created by @Autismo9000,validated by @Manuel_J,@Thor37115 and @Harry.B.
If you have any issues, feel free to ping them.
validations get stuck in validator 4, any idea?
It seems that Validator 4 is the only case where the input drone is not symmetrical, so perhaps you aren’t rotating the image by 180° properly? Try creating a custom case (e.g. change one of the ‘+’ in Test 4 to something else) to see if your code handles such a situation correctly.
The statements talks about ascii characters. But the § selected to represent a drone component is not ASCII, it is Unicode.
§ is a poor choice as it creates an unnecessary problem in languages with poor unicode support. Of course solvable, but the misleading explicit mentioning ascii in the statement makes it even worse.
I am wondering how 3 approvers did not check the statement?
§ is an 8-bit character, I don’t think that it will be problem.
Thank you for reporting. I’ve deleted “ASCII” in the statement.
That depends on the language and the library string functions you use.