Solve: Sleep In
Imported By: Geoffrey Challen
/ Version: 2021.2.0
The parameter weekday is true
if it is a weekday, and the parameter vacation is true
if we are on vacation.
We sleep in if it is not a weekday or we're on vacation.
Return true
if we sleep in.
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 sleepIn(boolean weekday, boolean vacation) {
return false;
}