Sha256: 4f146788fe7b8dd4923085416a84a5ab84d0b4076710c3427bd6685c69b29297

Contents?: true

Size: 486 Bytes

Versions: 1

Compression:

Stored size: 486 Bytes

Contents

##### Part One Description #####

class Solution
  attr_accessor :input
  def initialize(input)
    @input = input
  end

  def self.run!(input)
    solution = new(parse_input(input))
    <<~MSG
      Part One: #{solution.part_one!}
      Part Two: #{solution.part_two!}
    MSG
  end

  def self.parse_input(input)
    # Parse input
    input
  end

  def part_one!
    # Solve part one
  end

  def part_two!
    # Solve part two
  end
end

# __load_input__
puts Solution.run!(input)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aocli-1.4.1 lib/aocli/content/main.txt