Skip to content

Commit 89687c8

Browse files
authored
Update GenerateSubsets.java
1 parent e49a414 commit 89687c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/Recursion/GenerateSubsets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.ArrayList;
66
import java.util.List;
77

8-
public class GenerateSubsets {
8+
public final class GenerateSubsets {
99

1010
public static List<String> subsetRecursion(String p, String up) {
1111
if (up.isEmpty()) {

0 commit comments

Comments
 (0)