summaryrefslogtreecommitdiff
path: root/2021/12.hs
diff options
context:
space:
mode:
Diffstat (limited to '2021/12.hs')
-rw-r--r--2021/12.hs5
1 files changed, 0 insertions, 5 deletions
diff --git a/2021/12.hs b/2021/12.hs
index 03b2d77..ba902dd 100644
--- a/2021/12.hs
+++ b/2021/12.hs
@@ -12,11 +12,6 @@ import Input
import Util
-uniq :: Eq a => [a] -> [a]
-uniq (x : y : xs) | x == y = uniq (y : xs)
- | otherwise = x : uniq (y : xs)
-uniq l = l
-
main :: IO ()
main = do
inp <- getInput 12