summaryrefslogtreecommitdiff
path: root/h26.hs
diff options
context:
space:
mode:
Diffstat (limited to 'h26.hs')
-rw-r--r--h26.hs5
1 files changed, 0 insertions, 5 deletions
diff --git a/h26.hs b/h26.hs
deleted file mode 100644
index 4497e8c..0000000
--- a/h26.hs
+++ /dev/null
@@ -1,5 +0,0 @@
-combination :: Int -> [a] -> [[a]]
-combination 0 _ = [[]]
-combination _ [] = []
-combination c (x:xs) = (map (x:) (combination (c-1) xs)) ++ (combination c xs)
-