Skip to content

Commit

Permalink
Update Stack.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurjuneja authored Apr 3, 2018
1 parent 561a178 commit b5e7ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataStructures/Stack.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Evaluate Post fix expression**
```
public int evalPostFixExp(String expr) {
public int evalPostFixExp(String expr) {
if(expr.equals(""))
return 0;
Stack<Integer> stack = new Stack<>();
Expand Down

0 comments on commit b5e7ea7

Please sign in to comment.