From 3a349f2d5d04bc2177a5fdf5d34d5615d980278c Mon Sep 17 00:00:00 2001 From: ITZ-NIHALPATEL Date: Sun, 26 Oct 2025 01:23:03 +0530 Subject: [PATCH 1/2] test --- .../thealgorithms/backtracking/AllPathsFromSourceToTarget.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java b/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java index c35a36d97a57..276f05683c35 100644 --- a/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java +++ b/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java @@ -4,7 +4,7 @@ import java.util.List; /** - * Program description - To find all possible paths from source to destination + * Program description - To find all possible paths from source to destination * Wikipedia * * @author Siddhant Swarup Mallick From 4b5cf0944f0faa252b9853fbff8717ca6f8225f3 Mon Sep 17 00:00:00 2001 From: ITZ-NIHALPATEL Date: Sun, 26 Oct 2025 01:25:41 +0530 Subject: [PATCH 2/2] test --- .../backtracking/AllPathsFromSourceToTarget.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java b/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java index 276f05683c35..a1a7dc635177 100644 --- a/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java +++ b/src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java @@ -4,7 +4,7 @@ import java.util.List; /** - * Program description - To find all possible paths from source to destination + * Program description - To find all possible paths from source to destination * Wikipedia * * @author Siddhant Swarup Mallick @@ -12,7 +12,7 @@ @SuppressWarnings({"rawtypes", "unchecked"}) public class AllPathsFromSourceToTarget { - // No. of vertices in graph + // Number of vertices in graph private final int v; // To store the paths from source to destination