Easy
Given a string s, return true if it can be a palindrome after deleting at most one character.
s
true
Input: s = "aba" Output: true
Input: s = "abca" Output: true
Input: s = "abc" Output: false