KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
combos
★ 8
Open GitHub ↗
Go (Golang) Combinations Package
Download README (.md)
Explore Similar Repositories
check-dynamic-links
:
Burp extension to check dynamically generated links for vulnerabilities
eide
:
易语言EIDE助手 (EIDEA)
BingWallpaper
:
自动设置壁纸为Bing每日图片
redux-actions-async
:
A small library that facilitates the development of asynchronous actions in the redux ecosystem. Without copy-paste code and without headache.
jest-jenkins-reporter
:
A test reporter of jenkins for Jest.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
combos
?
Download (.md)
# combos combos is a simple combinations package ## Usage ```go package main import ( "fmt" "github.com/notnil/combos" ) func main() { fmt.Println(combos.New(7, 5)) // [[0 1 2 3 4] [0 1 2 3 5] [0 1 2 3 6] [0 1 2 4 5] [0 1 2 4 6] [0 1 25 6] [0 1 3 4 5] [0 1 3 4 6] [0 1 3 5 6] [0 1 4 5 6] [0 2 3 4 5] [0 2 3 4 6] [0 2 3 5 6] [0 2 4 5 6] [0 3 4 5 6] [1 2 3 4 5] [1 2 3 4 6] [1 2 3 5 6] [1 2 4 5 6] [1 3 4 5 6] [23 4 5 6]] } ```