Kotlinlearncs.online LogoJava
Return to List

Solve: In Order Equals

Imported By: Geoffrey Challen
/ Version: 2021.6.0

Given three ints first, second, and third, return true if second is greater than first and third is greater than second. However, if equalsOK is true, equality is allowed, so {5, 5, 5} or {5, 5, 7} would also return true.

boolean inOrderEqual(int first, int second, int third, boolean equalsOK) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: