Skip to main content
Module

x/simplestatistic/src/combinations_replacement.js>default

simple statistics for node & browser javascript
function default
import { default } from "https://deno.land/x/simplestatistic@v7.7.1/src/combinations_replacement.js";

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.

Examples

combinationsReplacement([1, 2], 2); // => [[1, 1], [1, 2], [2, 2]]

Parameters

x

any type of data

k

the number of objects in each group (without replacement)