Valid Palindrome II - Easy Data Structures and Algorithms Problem | Thita.ai
Valid Palindrome II
Difficulty: Easy
Category: DSA
Topics: Two Pointers, String, Greedy
Asked at: Facebook, Oracle, Microsoft, eBay, Wish
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:** true
```
**Example 2:**
**Input:** s = "abca"
**Output:** true
**Explanation:** You could delete the character 'c'.
```
**Example 3:**
**Input:** s = "abc"
**Output:** false
```
**Constraints:**
- `1 <= s.length <= 105`
- `s` consists of lowercase English letters.