Ejemplo n.º 1
0
        private static string SolvePart2(List <string> input)
        {
            var system = new ComputerSystem(new DecoderShipPart2());

            system.ExecuteProgram(input);

            return(system.SumOfAddressValues().ToString());
        }