MCPcopy 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
63def 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
70if __name__ == '__main__':

Callers 1

tarjans_scc.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected