mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +08:00
docs: improve javadoc for Combination class (#7126)
Updated class documentation to reflect that the class finds combinations instead of permutations.
This commit is contained in:
@@ -7,8 +7,7 @@ import java.util.List;
|
||||
import java.util.TreeSet;
|
||||
|
||||
/**
|
||||
* Finds all permutations of given array
|
||||
* @author Alan Piao (<a href="https://github.com/cpiao3">git-Alan Piao</a>)
|
||||
* Finds all combinations of a given array using backtracking algorithm * @author Alan Piao (<a href="https://github.com/cpiao3">git-Alan Piao</a>)
|
||||
*/
|
||||
public final class Combination {
|
||||
private Combination() {
|
||||
|
||||
Reference in New Issue
Block a user