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 3d69d37 commit 0cefbfcCopy full SHA for 0cefbfc
1 file changed
C++/basic-calculator.cpp
@@ -45,7 +45,6 @@ class Solution {
45
operands.pop();
46
const char op = operators.top();
47
operators.pop();
48
-
49
if (op == '+') {
50
operands.push(left + right);
51
} else if (op == '-') {
0 commit comments