Skip to content

Commit 30e8588

Browse files
committed
chore: remove logs
1 parent 70f36ed commit 30e8588

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

container-with-most-water/HoonDongKang.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ function maxArea(height: number[]): number {
1212

1313
while (left < right) {
1414
const length = Math.min(height[left], height[right]);
15-
console.log(length);
1615
const area = (right - left) * length;
1716

1817
result = Math.max(area, result);

0 commit comments

Comments
 (0)