Skip to content

Instantly share code, notes, and snippets.

@peroon
Created July 9, 2017 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peroon/c3ea56171f994dc3062c7a2d1955f68d to your computer and use it in GitHub Desktop.
Save peroon/c3ea56171f994dc3062c7a2d1955f68d to your computer and use it in GitHub Desktop.
def Combination(n, m):
f = math.factorial
return f(n) // f(m) // f(n - m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment