mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08: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
|
# 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]
|
>>> start = [1, 3, 0, 5, 8, 5]
|
||||||
>>> finish = [2, 4, 6, 7, 9, 9]
|
>>> finish = [2, 4, 6, 7, 9, 9]
|
||||||
|
Loading…
Reference in New Issue
Block a user