Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Position
Class
Position
Python/dijkstra.py:1–7 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
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
:
Callers
1
dijkstra.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected