Example #1
0
        public override string ProblemTwo()
        {
            var robot = new EmergencyHullPaintingRobot(128, 128, true);

            robot.Execute(Instructions);
            robot.DrawPanel();
            return("See above.");
        }
Example #2
0
        public override string ProblemOne()
        {
            var robot = new EmergencyHullPaintingRobot(128, 128);

            robot.Execute(Instructions);
            var result = robot.Steps;

            return($"{result}");
        }