14 lines
121 B
Ruby
14 lines
121 B
Ruby
|
#!/usr/bin/env ruby
|
||
|
|
||
|
require_relative '../common'
|
||
|
|
||
|
class DayNB < Day
|
||
|
def part1
|
||
|
end
|
||
|
|
||
|
def part2
|
||
|
end
|
||
|
end
|
||
|
|
||
|
DayNB.run
|