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.
Nice kata!!! I think the point is in implement some sort algorhim such a insertion sort, selection sort, bubble sort, quicksort ... and add the new restriction, I know modern languages have sort implemented but it is just for fun
This comment is hidden because it contains spoiler information about the solution
private instance fields should be lower case as a style rule. It should be side not Side, when it is implemented as a property it is better call Side instead side. But this is only style.
What happens when name is null??. It is better to do "Johnny".Equals(name) because if name is null it will evaluate to false. In case you do name.Equals it ends in a NullPointerException when name is null.