mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-21 11:10:08 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -18,7 +18,9 @@ package com.thealgorithms.dynamicprogramming;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public class PartitionProblem {
|
||||
public final class PartitionProblem {
|
||||
private PartitionProblem() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Test if a set of integers can be partitioned into two subsets such that the sum of elements
|
||||
|
Reference in New Issue
Block a user