namespace AdventOfCode2018 { public interface IDay { string ResolvePart1(string[] inputs); string ResolvePart2(string[] inputs); } }