Ad
  • Custom User Avatar

    Recently went through a course in algorithms and data structures. The course provided the knowledge I needed to solved this kata. Really fun and great kata, more katas like this!

  • Custom User Avatar

    Fun kata, but took me longer time then necessary. Somehow unit did not allow me to have the source list as a reference in front and back. for example, if source = [1] -> [2] -> None, and front = [1] -> None, and back = [2] -> None. It complained about front not being 1. Had to made a tmpFront which pointed to the same references of source, then copy them to front with new nodes which felt like.... Anyhow, great kata!