Skip to content

Commit d80e696

Browse files
committed
chore: 줄 바꿈
1 parent c99f88a commit d80e696

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

container-with-most-water/lledellebell.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
*
2626
*/
2727
function maxArea(height: number[]): number {
28-
let left = 0, right = height.length - 1, maxArea = 0;
28+
let left = 0,
29+
right = height.length - 1,
30+
maxArea = 0;
2931

3032
while (left < right) {
3133
// 현재 넓이 계산 및 최대값 갱신

0 commit comments

Comments
 (0)