Given a string s
, where *
represents a star…
Remove the star along with its closest non-star character to its left in a single operation.
The task is to perform this operation until all stars have been removed and to return the string that remains.
- Input
s
is always a string and the characters are lowercase only - There will be no consecutive stars (eg “ab***f”) - every star will be followed by a character or be the end of the string.
- Assume
s
has a length larger than 0 and smaller than 1000
chainlink → chainlink
chaa*inlinn*k → chainlink
abc*de*f → abdf
a*b*c*d → d
abcd → abcd
abc*de* → abd
You can use this JSON object to test your function.
Submit your solutions at this gist - we'll pick the one we like the best and get you something nice.
This can be easily solved with stacks while parsing only once the given string.
If the current character is a star we can pop the head of the stack (aka the closest left hand side non-star character) and move on to the next one, otherwise just keep stacking the valid characters.
Here's an example of the implementation, in Java: