Solve: Monkey Trouble
Imported By: Geoffrey Challen
/ Version: 2021.4.0
We have two monkeys, a and b, and the parameters aSmile
and bSmile
indicate if each is smiling.
We are in trouble if they are both smiling or if neither of them is smiling.
Return true
if we are in trouble.
For this problem we're expecting only a method.
Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.boolean monkeyTrouble(boolean aSmile, boolean bSmile) {
return false;
}