Skip to content

Commit 092d58e

Browse files
authored
Update 306. Additive Number.cpp
1 parent de59343 commit 092d58e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

LeetCode/306. Additive Number.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
class Solution {
22
bool isAdditiveNumberRec(string num, int idx, long long prev1, long long prev2, int cnt) {
3-
cout << num << ' ' << idx << ' ' << prev1 << ' ' << prev2 << endl;
4-
53
if(idx > num.length()) {
64
return false;
75
}

0 commit comments

Comments
 (0)