Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/subbarayudu-j/TheAlgorithms-Python
/ create_graph
Function
create_graph
Graphs/tarjans_scc.py:63–67 ·
view source on GitHub ↗
(n, edges)
Source
from the content-addressed store, hash-verified
61
62
63
def
create_graph(n, edges):
64
g = [[]
for
_ in range(n)]
65
for
u, v in edges:
66
g[u].append(v)
67
return
g
68
69
70
if
__name__ ==
'__main__'
:
Callers
1
tarjans_scc.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected