Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

longest palindromic substring #48

Open
LihuaWu opened this issue Feb 3, 2015 · 1 comment
Open

longest palindromic substring #48

LihuaWu opened this issue Feb 3, 2015 · 1 comment

Comments

@LihuaWu
Copy link

LihuaWu commented Feb 3, 2015

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--) {

@soulmachine
Copy link
Owner

I check this ASAP

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants