LC: 1216. Valid Palindrome III
https://leetcode.com/problems/valid-palindrome-iii/
Input: s = "abcdeca", k = 2
Output: true
Explanation: Remove 'b' and 'e' characters.Input: s = "abbababa", k = 1
Output: trueLast updated
https://leetcode.com/problems/valid-palindrome-iii/
Input: s = "abcdeca", k = 2
Output: true
Explanation: Remove 'b' and 'e' characters.Input: s = "abbababa", k = 1
Output: trueLast updated
class Solution {
public boolean isValidPalindrome(String s, int k) {
}
}