------
## 最终结论
```python
def reverse_delete(s, c):
    # Step 1: Delete characters
    result_string = ''.join(char for char in s if char not in c)
    
    # Step 2: Check palindrome
    is_palindrome = result_string == result_string[::-1]
    
    # Step 3: Return result
    return (result_string, is_palindrome)
```