mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-03 16:08:02 +00:00
Fix graph adj_weights comment (#228)
This commit is contained in:
committed by
Donne Martin
parent
ba3ec6f492
commit
b92cd87a16
@@ -119,7 +119,7 @@
|
||||
" self.visit_state = State.unvisited\n",
|
||||
" self.incoming_edges = 0\n",
|
||||
" self.adj_nodes = {} # Key = key, val = Node\n",
|
||||
" self.adj_weights = {} # Key = Node, val = weight\n",
|
||||
" self.adj_weights = {} # Key = key, val = weight\n",
|
||||
"\n",
|
||||
" def __repr__(self):\n",
|
||||
" return str(self.key)\n",
|
||||
|
||||
Reference in New Issue
Block a user