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.
Good solution...
This comment is hidden because it contains spoiler information about the solution
This does not seem like it should be the best practice. You calculate the square root twice when you could just store it once. Seems wasteful, especially if ever dealing with large numbers.
I personally would choose to go with 'name' instead of 'value' for the filter element name. I like the variable name to represent the data being worked with!
I agree with Cvillemus below. I'd break out or validate the walk count to 10 before iterating over the lists. You don't want to spend the time counting over a 50,000 step walk if you don't need to.