Skip to content

Commit 30906e6

Browse files
authored
Create put-boxes-into-the-warehouse-ii.py
1 parent d32ec85 commit 30906e6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Time: O(nlogn)
2+
# Space: O(1)
3+
4+
class Solution(object):
5+
def maxBoxesInWarehouse(self, boxes, warehouse):
6+
"""
7+
:type boxes: List[int]
8+
:type warehouse: List[int]
9+
:rtype: int
10+
"""
11+
boxes.sort(reverse=True)
12+
left, right = 0, len(warehouse)-1
13+
for h in boxes:
14+
if h <= warehouse[left]:
15+
left += 1
16+
elif h <= warehouse[right]:
17+
right -= 1
18+
if left > right:
19+
break
20+
return left + (len(warehouse)-1-right)

0 commit comments

Comments
 (0)