Loading...
Given a string s, return True if s can be a palindrome after deleting at most one character.
aba
True
s is "aba", which is already a palindrome since it reads the same backward as forward.True, indicating that the string can be a palindrome after deleting at most one character.