diff options
Diffstat (limited to 'sort')
-rw-r--r-- | sort/gnome.hs (renamed from sort/gnomesort.hs) | 3 | ||||
-rw-r--r-- | sort/merge.hs (renamed from sort/mergesort.hs) | 3 | ||||
-rw-r--r-- | sort/pancake.hs (renamed from sort/pancakesort.hs) | 3 | ||||
-rw-r--r-- | sort/quick.hs (renamed from sort/quicksort.hs) | 3 | ||||
-rw-r--r-- | sort/strand.hs (renamed from sort/strandsort.hs) | 3 |
5 files changed, 15 insertions, 0 deletions
diff --git a/sort/gnomesort.hs b/sort/gnome.hs index 2a9b9ce..e43b05a 100644 --- a/sort/gnomesort.hs +++ b/sort/gnome.hs @@ -1,3 +1,6 @@ +module Gnome ( + gnomeSort + ) where diff --git a/sort/mergesort.hs b/sort/merge.hs index 5c140b3..71dd999 100644 --- a/sort/mergesort.hs +++ b/sort/merge.hs @@ -1,3 +1,6 @@ +module Merge ( + mergeSort + ) where diff --git a/sort/pancakesort.hs b/sort/pancake.hs index 30993ba..2bfdb4a 100644 --- a/sort/pancakesort.hs +++ b/sort/pancake.hs @@ -1,3 +1,6 @@ +module Pancake ( + pancakeSort + ) where diff --git a/sort/quicksort.hs b/sort/quick.hs index 78330f3..44efd81 100644 --- a/sort/quicksort.hs +++ b/sort/quick.hs @@ -1,3 +1,6 @@ +module Quick ( + quickSort + ) where diff --git a/sort/strandsort.hs b/sort/strand.hs index 8226b79..856f75a 100644 --- a/sort/strandsort.hs +++ b/sort/strand.hs @@ -1,3 +1,6 @@ +module Strand ( + strandSort + ) where |