leetcode
leetcode copied to clipboard
longest palindromic substring
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--) {
I check this ASAP