Add broken day13pt2
[adventofcode2019.git] / src / adventofcode2019 / intcode.clj
index 9f09f1083f4a9fcff5c7e3f2994fdc86abdf2017..d3e010d534591a54f9a4cad40cdedc9cedfc1a50 100644 (file)
@@ -62,7 +62,7 @@
     (apply operation state args)))
 
 (defn get-program [input-file]
-  (map parse-int (get-list-from-file input-file) #","))
+  (map parse-int (get-list-from-file input-file #",")))
 
 (defn build-state 
   ([program]