Solve: Star Out
Imported By: Geoffrey Challen
/ Version: 2021.7.0
Return the given non-null
String
, but where for every '*' in the String
the '*' characters immediately
adjacent to it are removed.
So "ab*cd" and "ab**cd" both yield "ad".
For this problem we're expecting only a method.
Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.String starOut(String input) {
return "";
}