Exercise: Merge Sort
Let's dive into concurrent programming by implementing the merge sort concurrently.
We'll cover the following...
In this exercise, you are required to write a concurrent solution to the Merge Sort problem using goroutines
and channels
.
The gist of the Merge Sort Algorithm ...