Given three int
s 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
.
Stuck? You may find these lessons helpful: