Ad
  • Custom User Avatar

    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

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    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.

  • Custom User Avatar

    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.