14 lines
148 B
Crystal
14 lines
148 B
Crystal
require "advent"
|
|
INPUT = input(2020, n)#.lines.map(&.chomp)
|
|
|
|
def part1
|
|
input = INPUT.clone
|
|
end
|
|
|
|
def part2
|
|
input = INPUT.clone
|
|
end
|
|
|
|
part1
|
|
part2
|