
Next Birthday
You have to write a function that receives a "today" date and a dictionary of family birthdates, and for the person(s) whose birthday is next (today or later), return the number of days between "today" and that birthday, and the age they will be.
Note about leap days: If someone is born on February 29th, then he or she will celebrate birthdays on March 1st when necessary.
Input: Two arguments:
- a tuple of three integers (year, month, day) representing a date;
- a dictionary: keys are string and values are dates.
birthdates = { 'Brian': (1967, 5, 31), 'Léna': (1970, 10, 3), 'Philippe': (1991, 6, 15), 'Yasmine': (1996, 2, 29), 'Emma': (2000, 12, 25), } next_birthday((2020, 9, 8), birthdates) == (25, {'Léna': 50}) next_birthday((2021, 10, 4), birthdates) == (82, {'Emma': 21}) next_birthday((2022, 3, 1), birthdates) == (0, {'Yasmine': 26})
Preconditions:
- All the dates are valid (see the datetime module) and the next birthdays are valid for everyone.
-
Everyone is alive:
all(today >= birthdate for birthdate in birthdates.values())
-
birthdates
is never empty.
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.