Kotlinlearncs.online LogoJava
Return to List

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.

boolean sleepIn(boolean weekday, boolean vacation) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: