Programming Basic

Problem - 4807

Given a string s (containing only lower case English words), 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


The solution for this problem is available for $0.99. You can also purchase a pass for all available solutions for $99.

report an error