Solve: Has Bad
Imported By: Geoffrey Challen
/ Version: 2021.6.0
Given a String
, return true
if "bad" appears starting at index 0 or 1 in the String
, such as "badxxx" or
"xbadxx" but not "xxbadxx".
The String
may be any length, including 0.
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 hasBad(String input) {
return false;
}