Skip to content

Commit 60fd6d8

Browse files
committed
Solution to today's problem
1 parent 4aa18b2 commit 60fd6d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/io/github/spannm/leetcode/lc1/lc1500/Problem1579.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
*/
99
class Problem1579 extends LeetcodeProblem {
1010

11-
int maxNumEdgesToRemove(final int _n, final int[][] _edges) {
12-
final int[] rootA = new int[_n + 1];
13-
final int[] rootB = new int[_n + 1];
11+
int maxNumEdgesToRemove(int _n, int[][] _edges) {
12+
int[] rootA = new int[_n + 1];
13+
int[] rootB = new int[_n + 1];
1414
for (int i = 1; i <= _n; i++) {
1515
rootA[i] = i;
1616
rootB[i] = i;

0 commit comments

Comments
 (0)