Skip to main content
Module

x/simplestatistics/src/combinations_replacement.js

simple statistics for node & browser javascript
Latest
import * as simplestatistics from "https://deno.land/x/simplestatistics@v7.8.3/src/combinations_replacement.js";

Functions

Implementation of Combinations with replacement Combinations are unique subsets of a collection - in this case, k x from a collection at a time. 'With replacement' means that a given element can be chosen multiple times. Unlike permutation, order doesn't matter for combinations.