Solve: No Triples
Imported By: Geoffrey Challen
/ Version: 2021.5.0
Given an IntArray
, we'll say that a triple is a value appearing 3 times in a row in the array.
Return true
if the array does not contain any triples.
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 noTriples(values: IntArray): Boolean {
return false
}