aboutsummaryrefslogtreecommitdiff
path: root/2020/01b.hs
diff options
context:
space:
mode:
authorAria <me@aria.rip>2023-01-02 21:58:56 +0000
committerAria <me@aria.rip>2023-01-02 21:58:56 +0000
commit5eb58ad076f2cd435b11b140820da224b60b73d5 (patch)
tree2a67939595fbf993ff04f69b9cd3f0aa20827d96 /2020/01b.hs
initial commit
Diffstat (limited to '2020/01b.hs')
-rw-r--r--2020/01b.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/2020/01b.hs b/2020/01b.hs
new file mode 100644
index 0000000..17d6e02
--- /dev/null
+++ b/2020/01b.hs
@@ -0,0 +1,13 @@
+module Day1B where
+
+import System.Environment (getArgs)
+
+main :: IO ()
+main = do
+ args <- getArgs;
+ c <- readFile $ head args;
+ let ns = map read $ lines c;
+
+ print $ head [a * b * c| a <- ns, b <- ns, c <- ns, a + b + c == 2020];
+
+ return (); \ No newline at end of file