combination-and-permutation
Version:
Combination or Permutation computation
9 lines • 327 B
JavaScript
const fixed = new Map();
fixed.set(2, [4, 2, 4]);
fixed.set(3, [15, 3, 9, 15]);
fixed.set(4, [64, 4, 16, 40, 64]);
fixed.set(5, [325, 5, 25, 85, 205, 325]);
fixed.set(6, [1956, 6, 36, 156, 516, 1236, 1956]);
fixed.set(7, [13699, 7, 49, 259, 1099, 3619, 8659, 13699]);
export { fixed };
//# sourceMappingURL=fixed.js.map