Homework: xyz Middle
Imported By: learncs.online Staff
/ Version: 2021.7.0
Given a String
, return true
if "xyz" appears in the middle.
To define middle, we'll say that the number of chars to the left and right of the "xyz" must differ by at most
one.
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