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

Function adjm

Graphs/basic_graphs.py:170–174  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

168
169
170def adjm():
171 n, a = raw_input(), []
172 for i in xrange(n):
173 a.append(map(int, raw_input().split()))
174 return a, n
175
176
177"""

Callers

nothing calls this directly

Calls 1

splitMethod · 0.80

Tested by

no test coverage detected