MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / edglist

Function edglist

Graphs/basic_graphs.py:244–249  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

242
243
244def edglist():
245 n, m = map(int, raw_input().split(" "))
246 l = []
247 for i in xrange(m):
248 l.append(map(int, raw_input().split(' ')))
249 return l, n
250
251
252"""

Callers

nothing calls this directly

Calls 1

splitMethod · 0.80

Tested by

no test coverage detected