MCPcopy 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 ...
13func Start(input string) {
14 c := &Combinations{
15 in: []rune(input),
16 }
17
18 c.Combine(0)
19}
20
21// Combine ...
22func (c *Combinations) Combine(seed int) {

Callers

nothing calls this directly

Calls 1

CombineMethod · 0.95

Tested by

no test coverage detected