Given a string s, repeatedly remove two adjacent characters that are the same letter in different cases (like 'a' and 'A') until none remain, and return the resulting string. The input is JSON {s}.
Input: JSON {s}.
Output: String — the good string.
Input: {"s":"leEeetcode"}
Output: leetcode
Explanation: Remove the adjacent 'Ee'.Input: {"s":"abBAcC"}
Output:
Explanation: Everything cancels.Input: {"s":"s"}
Output: s
Explanation: Single character stays.0<=|s|<=100