Ejemplo n.º 1
0
        public string Part1()
        {
            var ship = new ShipType1();

            NavigateShip(ship);
            return($"Manhattan distance = {ship.ManhattanDistance}");
        }
Ejemplo n.º 2
0
 // Constructor
 public Ships()
 {
     shipType1      = new ShipType1();
     nbrOfShipType1 = 5;
 }