Skip to content

Commit 918ffc7

Browse files
committed
Update expression-add-operators.py
1 parent 23254b0 commit 918ffc7

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

Python/expression-add-operators.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ def addOperators(self, num, target):
2525
return result
2626

2727
def addOperatorsDFS(self, s, target, pos, operand1, operand2, expr, result):
28-
# Base Case 1
2928
if pos == len(s):
3029
if operand1 + operand2 == target:
3130
e = "".join(expr)

0 commit comments

Comments
 (0)