Skip to content
Merged
Prev Previous commit
Remove the trailing whitespace
  • Loading branch information
cclauss authored Oct 18, 2019
commit 8d3130cde597f97f629d6bc4dd58bdd3c495ae00
2 changes: 1 addition & 1 deletion data_structures/stacks/next_greater_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def printNGE(arr):
NGE - Maximum element present afterwards the current one which is also greater than current one
>>> printNGE([11,13,21,3])
11 -- 13
13 -- 21
13 -- 21
21 -- -1
3 -- -1
"""
Expand Down