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