Quick and Merge sorts in Haskell
2018, Mar 31
Quick and Merge sorts in Haskell
Haskell is a pure functional language - meaning everything is pure. Impurities including side effects are either not possible or has to be handled in a roundabout way.
Let’s see how easy and brief it is to implement quick sort and merge sort in Haskell.