Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Go
/ Start
Function
Start
strings/combination/combination.go:13–19 ·
view source on GitHub ↗
Start ...
(input string)
Source
from the content-addressed store, hash-verified
11
12
// Start ...
13
func
Start(input string) {
14
c := &Combinations{
15
in: []rune(input),
16
}
17
18
c.Combine(0)
19
}
20
21
// Combine ...
22
func
(c *Combinations) Combine(seed int) {
Callers
nothing calls this directly
Calls
1
Combine
Method · 0.95
Tested by
no test coverage detected