Skip to content

Commit 677fa92

Browse files
committed
remove console messages
1 parent f6fe04b commit 677fa92

File tree

1 file changed

+0
-4
lines changed
  • src/_DataStructures_/Stack/postfix-expression-evaluation

1 file changed

+0
-4
lines changed

src/_DataStructures_/Stack/postfix-expression-evaluation/index.js

-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,3 @@ function evaluatePostfixExpression(expression) {
3838
//pop the value of postfix expression
3939
return s.pop();
4040
}
41-
42-
console.log(evaluatePostfixExpression("123+*8-")); // -3
43-
44-
console.log(evaluatePostfixExpression("12345*+*+")); // 47

0 commit comments

Comments
 (0)