mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-30 22:23:42 +00:00
Rename x to activity
This commit is contained in:
parent
2364494193
commit
57fbc0332e
|
@ -37,7 +37,7 @@ def activity_selection(activities: list[tuple[int, int]]) -> list[tuple[int, int
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Step 1: Sort the activities by their end time
|
# Step 1: Sort the activities by their end time
|
||||||
sorted_activities = sorted(activities, key=lambda x: x[1])
|
sorted_activities = sorted(activities, key=lambda activity: activity[1])
|
||||||
|
|
||||||
# Step 2: Select the first activity (the one that finishes the earliest)
|
# Step 2: Select the first activity (the one that finishes the earliest)
|
||||||
# as the initial activity
|
# as the initial activity
|
||||||
|
|
Loading…
Reference in New Issue
Block a user