Skip to content

Instantly share code, notes, and snippets.

@kaveet
Created November 21, 2016 05:26
Show Gist options
  • Save kaveet/aa15c5007e08df1aef37bd9d9c98af0f to your computer and use it in GitHub Desktop.
Save kaveet/aa15c5007e08df1aef37bd9d9c98af0f to your computer and use it in GitHub Desktop.
Haskell Insertion Sort
module InsertionSort where
import Data.List (insert)
insertsort :: Ord a => [a] -> [a]
insertsort = foldr insert []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment