summaryrefslogtreecommitdiff
path: root/11-20/16.hs
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2017-05-28 20:29:11 -0400
committerDeterminant <ted.sybil@gmail.com>2017-05-28 20:29:11 -0400
commit9c608c32a9387a1dd1cb045e5822733ad181ccf8 (patch)
tree9464fd3f8e218c6000783c80e2db7b573c30ea80 /11-20/16.hs
parentb2d6f0e28dac922ac4ed5c55f79d0dd38f4765d2 (diff)
finish vol 2
Diffstat (limited to '11-20/16.hs')
-rw-r--r--11-20/16.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/11-20/16.hs b/11-20/16.hs
new file mode 100644
index 0000000..74cc946
--- /dev/null
+++ b/11-20/16.hs
@@ -0,0 +1,7 @@
+dropEvery :: [a] -> Int -> [a]
+
+dropEvery l n = d l 1
+ where d [] i = []
+ d (x:xs) i
+ | i == n = d xs 1
+ | otherwise = x:d xs (i + 1)