We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c972499 commit 56a42aaCopy full SHA for 56a42aa
src/test/java/com/thealgorithms/datastructures/disjointsetunion/DisjointSetUnionTest.java
@@ -129,7 +129,6 @@ public void testUnionByRankSmallerToLarger() {
129
Node<Integer> node1 = dsu.makeSet(1);
130
Node<Integer> node2 = dsu.makeSet(2);
131
Node<Integer> node3 = dsu.makeSet(3);
132
- Node<Integer> node4 = dsu.makeSet(4);
133
134
// Create tree with node1 as root and rank 1
135
dsu.unionSets(node1, node2);
0 commit comments