Social Network
Eulerian Path
Need for Math
def naive(a, b):
x = a
y = b
z = 0
while x > 0:
z = z + y
x = x - 1
return z
a = 12
b = 10
print(naive(a, b))Divide and Conquer
Last updated