Easy
A good string has no two adjacent characters where one is the lowercase and the other the uppercase of the same letter. Repeatedly remove such pairs from s and return the result.
Input: s = "leEeetcode" Output: "leetcode"
Input: s = "abBAcC" Output: ""