X-Git-Url: http://git.jkinsey.net/?p=adventofcode2019.git;a=blobdiff_plain;f=src%2Fadventofcode2019%2Fintcode.clj;fp=src%2Fadventofcode2019%2Fintcode.clj;h=d3e010d534591a54f9a4cad40cdedc9cedfc1a50;hp=9f09f1083f4a9fcff5c7e3f2994fdc86abdf2017;hb=ab32e54381280135a0df771d293438c195259dc2;hpb=2557180a5d7e409937099b91a1e0524e4238978a diff --git a/src/adventofcode2019/intcode.clj b/src/adventofcode2019/intcode.clj index 9f09f10..d3e010d 100644 --- a/src/adventofcode2019/intcode.clj +++ b/src/adventofcode2019/intcode.clj @@ -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]