Kotlinlearncs.online LogoJava
Return to List

Solve: No Triples

Imported By: Geoffrey Challen
/ Version: 2021.5.0

Given an int[], 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.

boolean noTriples(int[] values) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: