13 lines
696 B
Markdown
13 lines
696 B
Markdown
# N choose K for Go/Golang
|
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/golang-standards/project-layout?style=flat-square)](https://goreportcard.com/report/github.com/cannona/choose)
|
|
[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](http://godoc.org/github.com/cannona/choose)
|
|
[![Release](https://img.shields.io/github/release/golang-standards/project-layout.svg?style=flat-square)](https://github.com/cannona/choose/releases/latest)
|
|
|
|
package choose implements the N choose K formula, or the binomial coefficient formula. See https://en.wikipedia.org/wiki/Binomial_coefficient for more.
|
|
|
|
### Installation
|
|
|
|
go get github.com/cannona/choose
|
|
|