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.
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.
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.