AdventOfCode-2020/template.cr

14 lines
148 B
Crystal
Raw Normal View History

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