#283. hasBad
hasBad
Background
Description
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.
Format
Input
Output
Samples
badxx
true
xbadxx
true
xxbadxx
false
Limitation
1s, 1024KiB for each test case.