Skip to content

Commit

Permalink
Time: 93 ms (69.85%), Space: 73.4 MB (82.98%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Suvraneel committed Jan 31, 2025
1 parent 4800502 commit 8bac470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 0827-making-a-large-island/0827-making-a-large-island.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public int largestIsland(int[][] grid) {
}
}
}
System.out.println(largestSubgraphSize);
// System.out.println(largestSubgraphSize);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (grid[i][j] == 0) {
Expand Down

0 comments on commit 8bac470

Please sign in to comment.