diff --git a/template.cr b/template.cr new file mode 100644 index 0000000..212ecb2 --- /dev/null +++ b/template.cr @@ -0,0 +1,11 @@ +require "advent" +INPUT = input(2022, n)#.lines.map(&.to_i32) + +def part1(input) +end + +def part2(input) +end + +puts part1(INPUT.clone) +puts part2(INPUT.clone)