Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thank you so much hobovsky and Chrono79, I was trying to print the output causing the test to fail, it passed now after making the required changes
Read this too: https://docs.codewars.com/training/troubleshooting#post-discourse
Your solution is not exactly correct, it gets one small thing wrong. See this paragraph for some help.
It is not a kata issue.
This comment is hidden because it contains spoiler information about the solution
Thank you so much hobovsky, I am able to solve the issue now after you pointed it out with the above example, now my test passed
Your oslution works incorrectly for some inputs. For example, for
ages = [5, 8, 72, 98, 41, 16, 55 ]
it should return[5, 98, 93]
but it returns[0, 98, 98]
.Your solution being incorrect is not a kata issue.
This comment is hidden because it contains spoiler information about the solution