Last active
September 5, 2022 13:37
Permutations and combinations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function factorial(n) { | |
return n < 2 ? 1 : factorial(n - 1) * n; | |
} | |
function permutations(n, k) { | |
return factorial(n) / factorial(n - k) | |
} | |
function combinations(n, k) { | |
return factorial(n) / (factorial(k) * factorial(n - k)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment