Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revise description #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Assignments/ASSIGNMENT-1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -558,9 +558,9 @@
"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\".\n",
"\n",
"\n",
"Encode the weeks days as ints in the following way: 0=Sun, 1=Mon, 2=Tue, ...6=Sat. Encode the vacation infromation as boolean. Your code should assign the correct time to a variable as a string (following this format: \"7:00\") and print it.\n",
"Encode the days of the week as ints in the following way: 0=Sun, 1=Mon, 2=Tue, ...6=Sat. Encode the vacation information as a boolean. Your code should assign the correct time to a variable as a string (following this format: \"7:00\") and print it.\n",
"\n",
"Note: Encoding the days as an integer helps you with defining conditions. You can check whether the week day is in a certain interval (instead of writing code for every single day). "
"Note: Encoding the days as an integer helps you with defining conditions. You can check whether the day is in a certain interval (instead of writing code for every single day). "
]
},
{
Expand Down