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