summaryrefslogtreecommitdiff
path: root/sort
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2015-10-22 14:05:21 +1100
committerJed Barber <jjbarber@y7mail.com>2015-10-22 14:05:21 +1100
commit0a48ed023ea65d75851ba2a4151100602695a2fd (patch)
treed3e5b41e148475d5d7aeca164a9ebc8bc99becdd /sort
parent7dbbe1156c9489151dca6760b1021db426caf84e (diff)
Cleaning up source a bit
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