Skip to content

Commit

Permalink
Edited flights problem. ✈️
Browse files Browse the repository at this point in the history
  • Loading branch information
RodolfoFerro committed Dec 28, 2018
1 parent a59cab7 commit 5446997
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flights_bfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

def solution_with_bfs(connections, initial_state, solution):
"""
Function that generates new states from the initial state (using the
defined operators) to solve the Linear Puzzle with four elements by
doing a Breath-First Search in a graph.
Function that generates traverses connections from the initial state
to solve compute the minimum number of airport transfers in the flights
problem doing a Breath-First Search in a graph.
"""

# We initialize our data structures:
Expand Down

0 comments on commit 5446997

Please sign in to comment.