| 112 | * Creates an instance of the "rat in a maze" based on a given grid (maze). |
| 113 | */ |
| 114 | export class RatInAMaze { |
| 115 | constructor(grid) { |
| 116 | // first, let's do some error checking on the input |
| 117 | validateGrid(grid) |
nothing calls this directly
no outgoing calls
no test coverage detected