Haskell (oh man I missed this one)
This commit is contained in:
parent
f6eba9c423
commit
e1a39c069d
3
haskell/.gitignore
vendored
Normal file
3
haskell/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
problem
|
||||||
|
problem.hi
|
||||||
|
problem.o
|
25
haskell/2015/1/problem.hs
Normal file
25
haskell/2015/1/problem.hs
Normal 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
6
haskell/bin/run
Executable 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
|
Loading…
Reference in New Issue
Block a user