Skip to content

Commit 0cefbfc

Browse files
committed
Update basic-calculator.cpp
1 parent 3d69d37 commit 0cefbfc

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

C++/basic-calculator.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class Solution {
4545
operands.pop();
4646
const char op = operators.top();
4747
operators.pop();
48-
4948
if (op == '+') {
5049
operands.push(left + right);
5150
} else if (op == '-') {

0 commit comments

Comments
 (0)