Skip to content

Commit 352027e

Browse files
committed
Add missing package declaration in StronglyConnectedComponentOptimizedTest
1 parent 643a693 commit 352027e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/main/java/com/thealgorithms/graph/StronglyConnectedComponentOptimized.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
package com.thealgorithms.graph;
12
import java.util.ArrayList;
23
import java.util.Arrays;
34
import java.util.HashMap;

src/test/java/com/thealgorithms/graph/StronglyConnectedComponentOptimizedTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package com.thealgorithms.graph;
22

3+
4+
35
import static org.junit.jupiter.api.Assertions.assertEquals;
46

57
import java.util.ArrayList;

0 commit comments

Comments
 (0)