Problem Over the weekend I was curious about efficiently merging multiple sorted iterators together, and for them to be in […]

Problem I made a simple insertion sort in F#, it uses a tail recursive shift function that attempts to shift […]

Problem For practice, I tried implementing Bubble sort in Ruby. I wasn’t very sure how nested for loops would look […]

Problem Comb sort may be thought of as a generalization of bubble sort. The following is my implementation: package net.coderodde.util.sorting; […]

Problem For my CS minor I was assigned to implement the Quicksort algorithm in C#. I gave it a go […]