Skip to content

Commit 39912ae

Browse files
ashwekharshildarji
authored andcommitted
Update max_sub_array.py (TheAlgorithms#597)
1 parent 5db9d2e commit 39912ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamic_programming/max_sub_array.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def find_max_cross_sum(A,low,mid,high):
5050
tim.append(end-strt)
5151
print("No of Inputs Time Taken")
5252
for i in range(len(inputs)):
53-
print((inputs[i],'\t\t',tim[i]))
53+
print(inputs[i],'\t\t',tim[i])
5454
plt.plot(inputs,tim)
5555
plt.xlabel("Number of Inputs");plt.ylabel("Time taken in seconds ")
5656
plt.show()

0 commit comments

Comments
 (0)