Skip to content

Commit 14073c6

Browse files
authored
Update maximum-number-of-events-that-can-be-attended.py
1 parent e392fb9 commit 14073c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/maximum-number-of-events-that-can-be-attended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Time: O(r + nlogn), r is the max end day of events
22
# Space: O(n)
33

4-
import collections
4+
import heapq
55

66

77
class Solution(object):

0 commit comments

Comments
 (0)