From e1a39c069d7b1e1535c76693df543c312b11f08d Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Tue, 19 Dec 2023 16:59:20 -0500 Subject: [PATCH] Haskell (oh man I missed this one) --- haskell/.gitignore | 3 +++ haskell/2015/1/problem.hs | 25 +++++++++++++++++++++++++ haskell/bin/run | 6 ++++++ 3 files changed, 34 insertions(+) create mode 100644 haskell/.gitignore create mode 100644 haskell/2015/1/problem.hs create mode 100755 haskell/bin/run diff --git a/haskell/.gitignore b/haskell/.gitignore new file mode 100644 index 0000000..dd6d73c --- /dev/null +++ b/haskell/.gitignore @@ -0,0 +1,3 @@ +problem +problem.hi +problem.o \ No newline at end of file diff --git a/haskell/2015/1/problem.hs b/haskell/2015/1/problem.hs new file mode 100644 index 0000000..87477dd --- /dev/null +++ b/haskell/2015/1/problem.hs @@ -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 \ No newline at end of file diff --git a/haskell/bin/run b/haskell/bin/run new file mode 100755 index 0000000..020d3d8 --- /dev/null +++ b/haskell/bin/run @@ -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