mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-24 04:54:21 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
package com.thealgorithms.dynamicprogramming;
|
||||
|
||||
public class SumOfSubset {
|
||||
public final class SumOfSubset {
|
||||
private SumOfSubset() {
|
||||
}
|
||||
|
||||
public static boolean subsetSum(int[] arr, int num, int Key) {
|
||||
if (Key == 0) {
|
||||
|
Reference in New Issue
Block a user