Sha256: 293f4903c2bf52a176856bfbd80b40eaeb1d91ddf3f681e01ebbaf199681a01b
Contents?: true
Size: 649 Bytes
Versions: 1
Compression:
Stored size: 649 Bytes
Contents
module Aocli module Content module Main def self.content <<~RUBY ##### Part One Description ##### class Solution attr_accessor :input def initialize(input) @input = input end def self.run!(input) new(parse_input(input)).run! end def self.parse_input(input) # Parse input input end def run! # Solve input end end # __load_input__ puts Solution.run!(input) RUBY end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aocli-1.3.0 | lib/aocli/content/main.rb |