
Working Hours Calculator
Write a function that takes two dates and two times as input and returns the total number of working hours between the two dates (incl. both). Times representing the start and end of a workday. Working hours are defined as the time between the end and start times, Monday through Friday, excluding holidays. So the function also takes an argument that specifies a list of holidays to exclude (could be empty).
Time may have minutes. Convert them into float as minutes/60 with two-digits precision.
Input: Five arguments: two dates as strings (str), two times as strings, holidays as list of strings.
Output: Number of total working hours as integer or float (int | float).
Examples:
assert working_hours("2023-03-01", "2023-03-01", "09:00", "17:00", []) == 8 assert working_hours("2023-03-01", "2023-03-02", "09:00", "17:00", []) == 16 assert working_hours("2023-03-01", "2023-03-03", "09:00", "17:00", ["2023-03-01"]) == 16 assert ( working_hours("2023-03-01", "2023-03-05", "08:45", "17:10", ["2023-03-03"]) == 16.83 )
How it’s used: counting a total number of working hours, made by a worker or a machine is a usual thing at enterprises.
CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.
In order to install CheckiO client you'll need installed Python (version at least 3.8)
Install CheckiO Client first:
pip3 install checkio_client
Configure your tool
checkio --domain=py config --key=
Sync solutions into your local folder
checkio sync
(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)
checkio serv -d
Alternatevly, you can install Chrome extension or FF addon
checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium
Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.