leetcode icon indicating copy to clipboard operation
leetcode copied to clipboard

longest palindromic substring

Open LihuaWu opened this issue 10 years ago • 1 comments

https://github.com/soulmachine/leetcode/blob/master/C%2B%2B/chapString.tex#L402 the iteration direction for inner loop is not correct and should be for (int j = i - 1; j >= 0 ; j--) {

LihuaWu avatar Feb 03 '15 05:02 LihuaWu

I check this ASAP

soulmachine avatar Feb 03 '15 18:02 soulmachine