0680. Valid Palindrome II
https://leetcode.com/problems/valid-palindrome-ii
Description
Given a string s, return true if the s can be palindrome after deleting at most one character from it.
Example 1:
**Input:** s = "aba"
**Output:** trueExample 2:
**Input:** s = "abca"
**Output:** true
**Explanation:** You could delete the character 'c'.Example 3:
**Input:** s = "abc"
**Output:** falseConstraints:
1 <= s.length <= 105sconsists of lowercase English letters.
ac
Last updated
Was this helpful?