mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 22:43:30 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -7,7 +7,9 @@ import java.util.List;
|
||||
* Finds all permutations of given array
|
||||
* @author Alan Piao (<a href="https://github.com/cpiao3">Git-Alan Piao</a>)
|
||||
*/
|
||||
public class Permutation {
|
||||
public final class Permutation {
|
||||
private Permutation() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Find all permutations of given array using backtracking
|
||||
|
Reference in New Issue
Block a user