Showing posts with label CodingBat. Show all posts
Showing posts with label CodingBat. Show all posts

Friday, June 3, 2016

Java Challenge - WarmUp 1

Link : http://codingbat.com/prob/p187868
Task :
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.

sleepIn(false, false) → true
sleepIn(true, false) → false
sleepIn(false, true) → true

Solution :

1
2
3
4
5
6
7
public boolean sleepIn(boolean weekday, boolean vacation) {
  if(!weekday || vacation)
  {
    return true;
  }
  return false;
}

Result :