Skip to content

Commit 8829a96

Browse files
refactor(algorithms, intervals, count days): add return type
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 7f523ef commit 8829a96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/intervals/count_days/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import List
22

33

4-
def count_days(days: int, meetings: List[List[int]]):
4+
def count_days(days: int, meetings: List[List[int]]) -> int:
55
"""
66
Counts the number of days the employee is available for work but has no scheduled meetings.
77

0 commit comments

Comments
 (0)