Homework: Has Bad
Imported By: learncs.online Staff
/ 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.Please Log In to Complete Homework Problems