# 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:** 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.

## ac

```java
class Solution {
    public boolean validPalindrome(String s) {
        // edge case
        if (s == null || s.length() == 0) return false;

        int l = 0, r = s.length()-1;
        while (l < r) {
            if (s.charAt(l) != s.charAt(r)) {
                return validate(s, l, r-1) || validate(s, l+1, r);
            }
            l++;
            r--;
        }

        return true;
    }

    private boolean validate(String s, int l, int r) {
        // exit
        if (l > r) return false;
        if (l == r) return true;

        while (l < r) {
            if (s.charAt(l) != s.charAt(r)) return false;
            l++;
            r--;
        }

        return true;
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jaywin.gitbook.io/leetcode/solutions/0680-valid-palindrome-ii.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
