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 3a349f2 commit 4b5cf09Copy full SHA for 4b5cf09
src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java
@@ -4,15 +4,15 @@
4
import java.util.List;
5
6
/**
7
- * Program description - To find all possible paths from source to destination
+ * Program description - To find all possible paths from source to destination
8
* <a href="https://en.wikipedia.org/wiki/Shortest_path_problem">Wikipedia</a>
9
*
10
* @author <a href="https://github.com/siddhant2002">Siddhant Swarup Mallick</a>
11
*/
12
@SuppressWarnings({"rawtypes", "unchecked"})
13
public class AllPathsFromSourceToTarget {
14
15
- // No. of vertices in graph
+ // Number of vertices in graph
16
private final int v;
17
18
// To store the paths from source to destination
0 commit comments