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 7a0804f commit e8da759Copy full SHA for e8da759
src/main/java/com/thealgorithms/searches/Dijkstras.java renamed to src/main/java/com/thealgorithms/graph/Dijkstras.java
@@ -1,4 +1,4 @@
1
-package com.thealgorithms.searches; // update to match path; change back if you intend 'com.thealgorithms.graphs'
+package com.thealgorithms.graphs;
2
3
import java.util.List;
4
import java.util.Arrays;
@@ -15,7 +15,6 @@
15
*/
16
public final class Dijkstras {
17
18
- // Hide utility-class constructor
19
private Dijkstras() {
20
throw new AssertionError("Cannot instantiate utility class");
21
}
0 commit comments