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.
Completely agree, I tend to use else for readability. Thanks for commenting!
You don't actually need the else statement here.
If the first return statement runs, the function will be exited, and the second return statement will not run.
That said, I can see why you'd include the else statement for readability.
The last test with double spaces is what made it a great kata, in my opinion!
Maybe better as a 6 kyu, though.
Because it seemed like the point of the kata was to actually program the maximum and minimum functions and think about how they work. It's a good excercise, but obviously not practical in a production environemnt.
It's index 217 in the original list.
Look at the lengths of the two lists, the expected is 504, the actual is 503. The actual list is missing the zero.
Something in your code isn't handling zeroes correctly.
It will help to run through the code by hand and think through what would happen if the input is zero.