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.

fun inOrderEqual(
first: Int,
second: Int,
third: Int,
equalsOK: Boolean,
): Boolean {
return false // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: