Make changes to the template.

This commit is contained in:
Danila Fedorin 2020-12-11 11:32:12 -08:00
parent d1e15ca2c9
commit 17492a8c23
1 changed files with 5 additions and 7 deletions

View File

@ -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)