mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-18 08:17:01 +00:00
parent
2606f1bbe5
commit
de07245c17
|
@ -10,7 +10,7 @@ single person, one at a time"""
|
|||
# finish[] --> An array that contains finish time of all activities
|
||||
|
||||
|
||||
def printMaxActivities(start, finish):
|
||||
def printMaxActivities(start: list[int], finish: list[int]) -> None:
|
||||
"""
|
||||
>>> start = [1, 3, 0, 5, 8, 5]
|
||||
>>> finish = [2, 4, 6, 7, 9, 9]
|
||||
|
|
Loading…
Reference in New Issue
Block a user