We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1338ee commit 4b0c038Copy full SHA for 4b0c038
Python/maximum-area-rectangle-with-point-constraints-i.py
@@ -1,7 +1,7 @@
1
# Time: O(nlogn)
2
# Space: O(n)
3
4
-# sort, fenwick tree
+# sort, fenwick tree, hash table
5
class Solution(object):
6
def maxRectangleArea(self, points):
7
"""
0 commit comments