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

Function create_maze

Python/dijkstra.py:104–105  ·  view source on GitHub ↗
(height, width)

Source from the content-addressed store, hash-verified

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)]
106
107if __name__ == "__main__":
108 maze = create_maze(2, 2)

Callers 1

dijkstra.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected