Skip to content

Commit f8076b6

Browse files
committed
fix: java code
1 parent 9b4e020 commit f8076b6

File tree

1 file changed

+1
-1
lines changed
  • solution/3600-3699/3613.Minimize Maximum Component Cost

1 file changed

+1
-1
lines changed

solution/3600-3699/3613.Minimize Maximum Component Cost/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public int minCost(int n, int[][] edges, int k) {
2121
}
2222
return 0;
2323
}
24-
24+
2525
private int find(int x) {
2626
if (p[x] != x) {
2727
p[x] = find(p[x]);

0 commit comments

Comments
 (0)