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