combination-and-permutation
Version:
Combination or Permutation computation
9 lines • 305 B
JavaScript
const fixed = new Map();
fixed.set(2, [3, 2, 3]);
fixed.set(3, [7, 3, 6, 7]);
fixed.set(4, [15, 4, 10, 14, 15]);
fixed.set(5, [31, 5, 15, 25, 30, 31]);
fixed.set(6, [63, 6, 21, 41, 56, 62, 63]);
fixed.set(7, [127, 7, 28, 63, 98, 119, 126, 127]);
export { fixed };
//# sourceMappingURL=fixed.js.map