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 23254b0 commit 918ffc7Copy full SHA for 918ffc7
1 file changed
Python/expression-add-operators.py
@@ -25,7 +25,6 @@ def addOperators(self, num, target):
25
return result
26
27
def addOperatorsDFS(self, s, target, pos, operand1, operand2, expr, result):
28
- # Base Case 1
29
if pos == len(s):
30
if operand1 + operand2 == target:
31
e = "".join(expr)
0 commit comments