UNPKG

la-cosa-nostra

Version:

A Mafia bot designed to run in Discord - beware the traitors and the lies!

10 lines (6 loc) 197 B
var factorial = require("./factorial.js"); var permutations = require("./permutations.js"); module.exports = function (n, r) { // n choose r return permutations(n, r) * 1/(factorial(r)); };