Exemplo n.º 1
0
 def print_path(self, state: State):
     flights = state.get_flights_taken()
     print('------- Solution | Fast -------')
     print('Start at ' + self.src_airport.get_code())
     for flight in flights:
         print(flight)
     print('Arrive at ' + self.dest_airport.get_code())