You are given a string s, which contains stars *.
In one operation, you can:
s.Return the string after all stars have been removed.
Note:
Example 1:
Input: s = "leet**cod*e"
Output: "lecoe"
Explanation: Performing the removals from left to right:
s becomes "lee*cod*e".s becomes "lcod*e".s becomes "lcoe".There are no more stars, so we return "lcoe".
Example 2:
Input: s = "erase*****"
Output: ""
1 <= s.length <= 10^5s consists of lowercase English letters and stars *s