Skip to content

Commit 08aafc5

Browse files
Change CombinationSum class to final
1 parent 543ab54 commit 08aafc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/backtracking/CombinationSum.java

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

77
/** Backtracking: pick/not-pick with reuse of candidates. */
8-
public class CombinationSum {
8+
public final class CombinationSum {
99
private CombinationSum() {
1010
throw new UnsupportedOperationException("Utility class");
1111
}

0 commit comments

Comments
 (0)