Skip to content

Instantly share code, notes, and snippets.

@robsannaa
Created November 29, 2019 12:43
Show Gist options
  • Save robsannaa/eadedda21e2b206a896062a072d57e1e to your computer and use it in GitHub Desktop.
Save robsannaa/eadedda21e2b206a896062a072d57e1e to your computer and use it in GitHub Desktop.
def best_route(starting_location, intermediary_location, ending_location):
return route(starting_location, intermediary_location) + route(intermediary_location, ending_location)[1:]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment