You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|