We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70f36ed commit 30e8588Copy full SHA for 30e8588
container-with-most-water/HoonDongKang.ts
@@ -12,7 +12,6 @@ function maxArea(height: number[]): number {
12
13
while (left < right) {
14
const length = Math.min(height[left], height[right]);
15
- console.log(length);
16
const area = (right - left) * length;
17
18
result = Math.max(area, result);
0 commit comments