AdventOfCode-2022/template.cr

12 lines
155 B
Crystal
Raw Normal View History

2022-12-02 23:48:35 -08:00
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)