예제 #1
0
        public override int SolvePart1()
        {
            var optimizedGrid = new LightGrid();

            optimizedGrid.ApplyInstructions(instructions);
            return(optimizedGrid.GetTurnedOnLightCount());
        }