dina-agi
Version:
DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.
14 lines (13 loc) • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.permutationsDocs = void 0;
const permutationsDocs = exports.permutationsDocs = {
name: 'permutations',
category: 'Probability',
syntax: ['permutations(n)', 'permutations(n, k)'],
description: 'Compute the number of permutations of n items taken k at a time',
examples: ['permutations(5)', 'permutations(5, 3)'],
seealso: ['combinations', 'combinationsWithRep', 'factorial']
};