This commit is contained in:
Arranun 2019-12-05 08:29:13 +01:00
parent c626cdfa96
commit b338b3c2ca

17
day1.hs Normal file
View File

@ -0,0 +1,17 @@
main = do
content <- getContents
putStrLn (show $ foldl getOp 0 (lines content))
getOp :: Int -> String -> Int
getOp acc number = acc + (math (read number)) + getFuel 0 (math(read number))
getFuel :: Int -> Int -> Int
getFuel acc fuel = do
if (math fuel) > 0
then acc + (math fuel) + getFuel acc (math fuel)
else
acc
math :: Int -> Int
math input = ((input `div` 3) - 2)