Templates

This commit is contained in:
2024-12-02 11:51:49 +01:00
parent 5b1fd043e7
commit b48bba9061
24 changed files with 354 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{-# LANGUAGE LambdaCase #-}
module Main where
import Data.Functor
parse = undefined
solve1 = undefined
solve2 = undefined
main :: IO ()
main = readFile "inputs/11" <&> parse >>= \i ->
print (solve1 i) >>
print (solve2 i)