(maze)
| 99 | return final |
| 100 | |
| 101 | def can_escape(maze): |
| 102 | return escape_route(maze) is not None |
| 103 | |
| 104 | def create_maze(height, width): |
| 105 | return [[None for x in range(width)] for y in range(height)] |
nothing calls this directly
no test coverage detected