Skip to content

Commit e791751

Browse files
committed
Final fix
1 parent 7b9fbf0 commit e791751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/dynamicprogramming/SubsetSum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static boolean subsetSum(int[] arr, int sum) {
3535
}
3636

3737
/*
38-
Space Optimized solution using 1D boolean array
38+
Space Optimized solution using 1D boolean array
3939
Time Complexity: O(n * sum)
4040
Space complexity: O(sum)
4141
*/

0 commit comments

Comments
 (0)