Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Days Between by murnet
from datetime import date
def days_diff(a: tuple[int, int, int], b: tuple[int, int, int]) -> int:
# your code here
return abs(date(*a) - date(*b)).days
print("Example:")
print(days_diff((1982, 4, 19), (1982, 4, 22)))
assert days_diff((1982, 4, 19), (1982, 4, 22)) == 3
assert days_diff((2014, 1, 1), (2014, 8, 27)) == 238
assert days_diff((2014, 8, 27), (2014, 1, 1)) == 238
print("The mission is done! Click 'Check Solution' to earn rewards!")
April 28, 2024