Add competitive template for Crystal

This commit is contained in:
Danila Fedorin 2022-12-02 23:48:35 -08:00
parent 5f97f44af4
commit b1a2a25edb
1 changed files with 11 additions and 0 deletions

11
template.cr Normal file
View File

@ -0,0 +1,11 @@
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)