From c74b2732d9282fa68c0de666d39635e6ec018f03 Mon Sep 17 00:00:00 2001 From: S-Sanyal Date: Wed, 3 Oct 2018 21:37:46 +0530 Subject: [PATCH] Updated --- data_structures/Stacks/Stock-Span-Problem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/Stacks/Stock-Span-Problem.py b/data_structures/Stacks/Stock-Span-Problem.py index ecef7ecc6..2081166bb 100644 --- a/data_structures/Stacks/Stock-Span-Problem.py +++ b/data_structures/Stacks/Stock-Span-Problem.py @@ -37,7 +37,7 @@ def calculateSpan(price, S): # A utility function to print elements of array def printArray(arr, n): for i in range(0,n): - print (arr[i]), + print (arr[i],end =" ") # Driver program to test above function