Question: Explain if the runtime of the function below is O(n2). def adjList2AdjMatrix(M, n): C = [ [ 0 for i in range(n) ] for j
Explain if the runtime of the function below is O(n2).
def adjList2AdjMatrix(M, n):
C = [ [ 0 for i in range(n) ] for j in range(n) ]
for i in range(n):
for j in M[i]:
C[i][j] = 1
return C
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
