Kotlinlearncs.online LogoJava
Return to List

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.

boolean hasBad(String input) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: