Haskell (oh man I missed this one)

This commit is contained in:
Bill Rossi 2023-12-19 16:59:20 -05:00
parent f6eba9c423
commit e1a39c069d
3 changed files with 34 additions and 0 deletions

3
haskell/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
problem
problem.hi
problem.o

25
haskell/2015/1/problem.hs Normal file
View File

@ -0,0 +1,25 @@
import System.IO
import Control.Monad
main = do
let list = []
inputHandle <- openFile "../data/2015/1/input.txt" ReadMode
input <- hGetContents inputHandle
putStr "Part 1: "
putStrLn $ finalFloor input 0
putStr "Part 2: "
putStrLn $ basementSteps input 0 0
hClose inputHandle
finalFloor :: String -> Int -> String
finalFloor ('(' : rest) floor = finalFloor rest (floor + 1)
finalFloor (')' : rest) floor = finalFloor rest (floor - 1)
finalFloor _ floor = show floor
basementSteps :: String -> Int -> Int -> String
basementSteps _ (-1) steps = show steps
basementSteps ('(' : rest) floor steps = basementSteps rest (floor + 1) (steps + 1)
basementSteps (')' : rest) floor steps = basementSteps rest (floor - 1) (steps + 1)
basementSteps _ _ steps = show steps

6
haskell/bin/run Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
year=$1
day=$2
ghc -o $year/$day/problem $year/$day/problem.hs && time ./$year/$day/problem