Skip to content

Instantly share code, notes, and snippets.

@cohalz
Created January 19, 2014 14:51
Show Gist options
  • Save cohalz/8505935 to your computer and use it in GitHub Desktop.
Save cohalz/8505935 to your computer and use it in GitHub Desktop.
let rec comb(n,m) =
if m = 0 || n = m then 1
else comb(n-1,m) + comb(n-1,m-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment