-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsolution.py
54 lines (40 loc) · 1.33 KB
/
solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
|| HackerRank
Problem: Library Fine
Level: easy
Author: vatsalchanana
Implementation: apexDev37
Status: PASSED - '17/17 test cases passed'
"""
from datetime import date
def library_fine(d1, m1, y1, d2, m2, y2):
return_date = convert_to_date(d1, m1, y1)
due_date = convert_to_date(d2, m2, y2)
return get_fine(return_date, due_date)
def convert_to_date(day: int, month: int, year: int) -> date:
converted_date = date(year, month, day)
return converted_date
def get_fine(return_date: date, due_date: date) -> int:
fine = 0
if not is_returned_by_due_date(return_date, due_date):
difference = compute_date_difference(return_date, due_date)
fine = compute_fine_amount(difference)
return fine
def is_returned_by_due_date(return_date: date, due_date: date) -> bool:
difference = return_date - due_date
return difference.days <= 0
def compute_date_difference(return_date: date, due_date: date) -> dict:
return {
'year': return_date.year - due_date.year,
'month': return_date.month - due_date.month,
'day': return_date.day - due_date.day
}
def compute_fine_amount(difference: dict) -> None:
for key, diff in difference.items():
if diff > 0:
if key == 'year':
return 10000
if key == 'month':
return diff * 500
if key == 'day':
return diff * 15