Skip to content

Commit 4b0c038

Browse files
authored
Update maximum-area-rectangle-with-point-constraints-i.py
1 parent e1338ee commit 4b0c038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/maximum-area-rectangle-with-point-constraints-i.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Time: O(nlogn)
22
# Space: O(n)
33

4-
# sort, fenwick tree
4+
# sort, fenwick tree, hash table
55
class Solution(object):
66
def maxRectangleArea(self, points):
77
"""

0 commit comments

Comments
 (0)