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

Method __init__

Python/dijkstra.py:2–7  ·  view source on GitHub ↗
(self, north = False, east = False, south = False, west = False, exit = False)

Source from the content-addressed store, hash-verified

1class 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
9def get_maze_size(maze):
10 try:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected