We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5db9d2e commit 39912aeCopy full SHA for 39912ae
dynamic_programming/max_sub_array.py
@@ -50,7 +50,7 @@ def find_max_cross_sum(A,low,mid,high):
50
tim.append(end-strt)
51
print("No of Inputs Time Taken")
52
for i in range(len(inputs)):
53
- print((inputs[i],'\t\t',tim[i]))
+ print(inputs[i],'\t\t',tim[i])
54
plt.plot(inputs,tim)
55
plt.xlabel("Number of Inputs");plt.ylabel("Time taken in seconds ")
56
plt.show()
0 commit comments