From bbff8c31cc388e555296f023f980192e1d20ce42 Mon Sep 17 00:00:00 2001 From: toastyandwarm Date: Sat, 7 Dec 2024 15:42:40 +0000 Subject: [PATCH] remove dead code --- 7/solution.hs | 3 --- 1 file changed, 3 deletions(-) diff --git a/7/solution.hs b/7/solution.hs index f290227..3bfa7fd 100644 --- a/7/solution.hs +++ b/7/solution.hs @@ -42,9 +42,6 @@ getOperators2 x concat' :: (Show a, Read a) => a -> a -> a concat' x y = read ((show x) ++ (show y)) ---solve2 :: [(Int, Int)] -> Int ---solve2 x = sum $ (\(x, y) -> map (\z -> z * (count z y)) x) $ unzip x - main :: IO() main = do fileinp <- readFile "input.txt"