Skip to content

Commit e8047e0

Browse files
committed
[fix] remove the debug loging
1 parent 3940282 commit e8047e0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

algorithms/cpp/longestPalindromicSubstring/longestPalindromicSubstring.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ string longestPalindrome_dp_opt_way(string s) {
159159
if (len < i-j+1){
160160
start = j;
161161
len = i-j+1;
162-
cout << start << ":" << len <<endl;
163162
}
164163
}
165164
}

0 commit comments

Comments
 (0)