Medium
Given a string s with letters and *. Each * removes the closest non-star character to its left (and itself). Return the resulting string.
s
*
Input: s = "leet**cod*e" Output: "lecoe"
Input: s = "erase*****" Output: ""