Easy
Given a string s, repeatedly remove two adjacent equal letters until no more can be removed. Return the final string.
s
Input: s = "abbaca" Output: "ca"
Input: s = "azxxzy" Output: "ay"