Skip to content

Commit 6583d73

Browse files
committed
Update expression-add-operators.cpp
1 parent 918ffc7 commit 6583d73

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

C++/expression-add-operators.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class Solution {
1313
void addOperatorsDFS(const string& s, const int& target, const int& pos,
1414
const int& operand1, const int& operand2, vector<string> *expr,
1515
vector<string> *result) {
16-
// Base Case 1
1716
if (pos == s.length()) {
1817
if (operand1 + operand2 == target) {
1918
result->emplace_back(move(join(*expr)));

0 commit comments

Comments
 (0)