Solve: Answer Cell
Imported By: Geoffrey Challen
/ Version: 2021.6.0
Your cell phone rings.
Return true
if you should answer it.
Normally you answer, except in the morning you only answer if it is your mom calling.
In all cases, if you are asleep, you do not answer.
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.fun answerCell(
isMorning: Boolean,
isMom: Boolean,
isAsleep: Boolean,
): Boolean {
return false
}