Insertion sort
Recently, I’ve been learning about different types of sorting algorithms. However, I am far from being an expert on this. So take everything I say with a grain of salt. In this blog post, I document my first look at insertion sort. Later, we implement this method of sorting in a .Net core console application. Insertion sort is one of the elementary sorting algorithms. It sorts each item in the array as it is encountered....