Make changes to the template.
This commit is contained in:
parent
d1e15ca2c9
commit
17492a8c23
12
template.cr
12
template.cr
|
@ -1,13 +1,11 @@
|
|||
require "advent"
|
||||
INPUT = input(2020, n)#.lines.map(&.chomp)
|
||||
INPUT = input(2020, n)#.lines.map(&.to_i32)
|
||||
|
||||
def part1
|
||||
input = INPUT.clone
|
||||
def part1(input)
|
||||
end
|
||||
|
||||
def part2
|
||||
input = INPUT.clone
|
||||
def part2(input)
|
||||
end
|
||||
|
||||
part1
|
||||
part2
|
||||
puts part1(INPUT.clone)
|
||||
puts part2(INPUT.clone)
|
||||
|
|
Loading…
Reference in New Issue
Block a user