X110: hasBad

Given a string, return true if "bad" appears starting at index 0 or 1 in the string, such as with "badxxx" or "xbadxx" but not "xxbadxx". The string may be any length, including 0. Note: use .equals() to compare 2 strings.

Your Answer:

x
 
1
public boolean hasBad(String str)
2
{
3
    
4
}
5

Feedback

Your feedback will appear here when you check your answer.