Solve: xyz Middle
Imported By: Geoffrey Challen
/ 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.fun xyzMiddle(input: String): Boolean {
return false
}