Skip to content

Commit 25f97af

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3a45fb7 commit 25f97af

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

matrix/largest_square_area_in_matrix.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
"""
4444

4545

46-
47-
4846
def largest_square_area_in_matrix_top_down_approch(
4947
rows: int, cols: int, mat: list[list[int]]
5048
) -> int:
@@ -189,4 +187,4 @@ def largest_square_area_in_matrix_bottom_up_space_optimization(
189187
import doctest
190188

191189
doctest.testmod()
192-
print(largest_square_area_in_matrix_bottom_up(2, 2, [[1,1], [1,1]]))
190+
print(largest_square_area_in_matrix_bottom_up(2, 2, [[1, 1], [1, 1]]))

0 commit comments

Comments
 (0)