Skip to content

Commit 5cc0782

Browse files
authored
Update number-of-orders-in-the-backlog.py
1 parent 20f5f7d commit 5cc0782

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/number-of-orders-in-the-backlog.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Time: O(nlogn)
22
# Space: O(n)
33

4+
import heapq
5+
6+
47
class Solution(object):
58
def getNumberOfBacklogOrders(self, orders):
69
"""

0 commit comments

Comments
 (0)