We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Bug Report for https://neetcode.io/problems/valid-palindrome-ii
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
This submission passes but it's incorrect:
class Solution: def validPalindrome(self, s: str) -> bool: p1, p2 = 0, len(s)-1 removed = False while p1<p2: if s[p1] != s[p2]: if removed: return False if s[p1+1]==s[p2]: removed=True p1+=1 elif s[p1]==s[p2-1]: removed=True p2-=1 else: return False p1 += 1 p2 -= 1 return True
It fails with this test case:
s="aguokepatgbnvfqmgmlcupuufxoohdfpgjdmysgvhmvffcnqxjjxqncffvmhvgsymdjgpfdhooxfuupuculmgmqfvnbgtapekouga"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report for https://neetcode.io/problems/valid-palindrome-ii
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
This submission passes but it's incorrect:
It fails with this test case:
The text was updated successfully, but these errors were encountered: