Solve: Same Star Character
Imported By: Geoffrey Challen
/ Version: 2021.7.0
Returns true if for every '*' in the String
, if there are characters both before and after the star,
they are the same.
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.boolean sameStarChar(String input) {
return false;
}