Kotlinlearncs.online LogoJava
Return to List

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.

fun noTriples(values: IntArray): Boolean {
return false // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: