LeetCode Solution, Easy, 680. Valid Palindrome II
680. Valid Palindrome II
題目敘述
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 ...
blog.taiwolskit.com3 min read