Files
AdventOfCode-2020/template.cr
2020-11-30 20:44:23 -08:00

10 lines
124 B
Crystal

INPUT = File.read("dayN.txt")#.lines.map(&.trim)
def part1
input = INPUT.clone
end
def part2
input = INPUT.clone
end