Dec-23-2022, 04:12 PM
Hello, after an argumant I would like to get answer from people who know about that bigO
What is the runtime big O for this code?
I think this is n^2 but someone said its n^3 what is the big o for this code?
Thank you.
CODE:
What is the runtime big O for this code?
I think this is n^2 but someone said its n^3 what is the big o for this code?
Thank you.
CODE:
BigO_2(n):
L = []
for i in range(n):
for j in range(n):
L.append(i*j)
for i in range(n):IDK what is that VVdef![]()

