diff options
author | John Denker <jsd@av8n.com> | 2021-10-17 10:10:18 -0700 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2021-10-17 11:09:24 -0700 |
commit | 74ddd0381aa1b1a90eb0d5300fa576cb2348eeac (patch) | |
tree | 72a9dded6f800467d52e479eb37574e6de5f2e6c /binomial-coefficient-choose.h | |
parent | 634d365a03cb0581a062cd3cf4db9ae69f1cde26 (diff) |
basically functional, but still a work in progress
Diffstat (limited to 'binomial-coefficient-choose.h')
-rw-r--r-- | binomial-coefficient-choose.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binomial-coefficient-choose.h b/binomial-coefficient-choose.h new file mode 100644 index 0000000..cd0d91f --- /dev/null +++ b/binomial-coefficient-choose.h @@ -0,0 +1,6 @@ +#ifndef BINOMIAL_COEFFICIENT_CHOOSE_H +#define BINOMIAL_COEFFICIENT_CHOOSE_H + +int binomialCoeff(int const n, int const k); + +#endif |