AdventOfCode-2020/template.cr

12 lines
155 B
Crystal
Raw Normal View History

2020-12-05 16:06:51 -08:00
require "advent"
2020-12-11 11:32:12 -08:00
INPUT = input(2020, n)#.lines.map(&.to_i32)
2020-11-30 20:44:23 -08:00
2020-12-11 11:32:12 -08:00
def part1(input)
2020-11-30 20:44:23 -08:00
end
2020-12-11 11:32:12 -08:00
def part2(input)
2020-11-30 20:44:23 -08:00
end
2020-12-04 23:24:48 -08:00
2020-12-11 11:32:12 -08:00
puts part1(INPUT.clone)
puts part2(INPUT.clone)