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.
U as well may return it without if else, just put the comparison after return, like return a == b; if a = b, then it'll return true, otherwise - false
insane...
Don't post solutions.
Thank you, I realized that as soon as I saw the other solutions. I'm fairly new to coding
u can use max(array) to find the max value in this list, then you can compare max(array) and limit and return it
"return max(array)<= limit"
if limit >= max value in list, func will return True, if no - False
This comment is hidden because it contains spoiler information about the solution