Go to the first, previous, next, last section, table of contents.


base_subsets_of_size

base_subsets_of_size(K,S)
: It outputs all subsets of S of the size K. BUG; it uses a slow algorithm. Do not input a large S.

Example:

 base_subsets_of_size(2,[3,5,3,2]);


Go to the first, previous, next, last section, table of contents.