MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / can_escape

Function can_escape

Python/dijkstra.py:101–102  ·  view source on GitHub ↗
(maze)

Source from the content-addressed store, hash-verified

99 return final
100
101def can_escape(maze):
102 return escape_route(maze) is not None
103
104def create_maze(height, width):
105 return [[None for x in range(width)] for y in range(height)]

Callers

nothing calls this directly

Calls 1

escape_routeFunction · 0.85

Tested by

no test coverage detected