Skip to content

Commit 31fcb94

Browse files
committed
test: 827 solution
py
1 parent ca20b36 commit 31fcb94

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

problems/problems_827/solution.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ def largestIsland(self, grid: List[List[int]]) -> int:
1313
def point_to_idx(x, y):
1414
return x * n + y
1515

16-
17-
1816
n = len(grid)
1917
uf = UnionFind(n * n)
2018
for i, row in enumerate(grid):

0 commit comments

Comments
 (0)