(self, north = False, east = False, south = False, west = False, exit = False)
| 1 | class Position: |
| 2 | def __init__(self, north = False, east = False, south = False, west = False, exit = False): |
| 3 | self.north = north |
| 4 | self.east = east |
| 5 | self.south = south |
| 6 | self.west = west |
| 7 | self.exit = exit |
| 8 | |
| 9 | def get_maze_size(maze): |
| 10 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected