We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29cf73f commit 6d4cbbeCopy full SHA for 6d4cbbe
pygorithm/data_structures/stack.py
@@ -116,6 +116,7 @@ def infix_to_postfix(self):
116
function to generate postfix expression from infix expression
117
"""
118
postfix = []
119
+
120
for i in range(len(self.expression)):
121
if self._is_operand(self.expression[i]):
122
postfix.append(self.expression[i])
0 commit comments