5.9k views
4 votes
Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat, and a boolean indicating if we are on vacation, return a string of the form "7:00" indicating when the alarm clock should ring. Weekdays, the alarm should be "7:00" and on the weekend it should be "10:00". Unless we are on vacation -- then on weekdays it should be "10:00" and weekends it should be "off".

A alarmClock(1, false) → "7:00"
B alarmClock(5, false) → "7:00"
C alarmClock(0, false) → "10:00"

User Daquan
by
6.8k points

1 Answer

0 votes

Final answer:

The given problem can be solved using a simple if-else statement in a programming language like Python. We can use the day of the week and the vacation boolean to determine the alarm time.

Step-by-step explanation:

The given problem can be solved using a simple if-else statement in a programming language like Python. We can use the day of the week and the vacation boolean to determine the alarm time. Here's an example code snippet:

def alarmClock(day, vacation):
if vacation:
if day == 0 or day == 6:
return 'off'
else:
return '10:00'
else:
if day == 0 or day == 6:
return '10:00'
else:
return '7:00'

Using this code, alarmClock(1, false) will return '7:00' and alarmClock(0, false) will return '10:00'.

User Dmitriy Snitko
by
7.4k points