We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc584f1 commit c74b273Copy full SHA for c74b273
data_structures/Stacks/Stock-Span-Problem.py
@@ -37,7 +37,7 @@ def calculateSpan(price, S):
37
# A utility function to print elements of array
38
def printArray(arr, n):
39
for i in range(0,n):
40
- print (arr[i]),
+ print (arr[i],end =" ")
41
42
43
# Driver program to test above function
0 commit comments