Ad
  • Default User Avatar

    You are right. I was mistaken. I have made the switch

  • Default User Avatar

    I chose ArrayList over List because List is strongly typed. You cannot have multiple types (such as string and integers) in a single List. You could create a list of objects, but then you would have to box and unbox each iteration. So in order to more closely match up to the original kata in other languages. I chose to use ArrayList.