Late Day 1
This commit is contained in:
commit
948afa564b
|
@ -0,0 +1 @@
|
|||
inputs/*
|
|
@ -0,0 +1,19 @@
|
|||
module Day1 where
|
||||
import System.IO (openFile, IOMode (ReadMode), hClose, hGetContents)
|
||||
|
||||
strToInts :: String -> [Int]
|
||||
strToInts = map read . lines
|
||||
|
||||
depth :: [Int] -> Int
|
||||
depth [] = 0
|
||||
depth [x] = 0
|
||||
depth (x:xs)
|
||||
| head xs > x = 1 + depth xs
|
||||
| otherwise = depth xs
|
||||
|
||||
main :: IO ()
|
||||
main = do
|
||||
input <- openFile "inputs/1.txt" ReadMode
|
||||
contents <- hGetContents input
|
||||
print $ depth $ strToInts contents
|
||||
hClose input
|
|
@ -0,0 +1,19 @@
|
|||
module Day1_2 where
|
||||
import System.IO (openFile, IOMode (ReadMode), hClose, hGetContents)
|
||||
|
||||
strToInts :: String -> [Int]
|
||||
strToInts = map read . lines
|
||||
|
||||
depth :: [Int] -> Int
|
||||
depth a@(x:y:z:xs) = case length a > 3 of
|
||||
True
|
||||
| sum [y,z,head xs] > sum [x,y,z] -> 1 + depth (y:z:xs)
|
||||
| otherwise -> depth (y:z:xs)
|
||||
False -> 0
|
||||
|
||||
main :: IO ()
|
||||
main = do
|
||||
input <- openFile "inputs/1.txt" ReadMode
|
||||
contents <- hGetContents input
|
||||
print $ depth $ strToInts contents
|
||||
hClose input
|
Loading…
Reference in New Issue