Documentation
¶
Overview ¶
Example ¶
package main
import (
"fmt"
"github.com/skhal/lab/iq/11/geomseq"
)
func main() {
triplets := geomseq.Find([]int{3, 1, 2, 3, 9, 3, 27}, 3)
for _, triplet := range triplets {
fmt.Println(triplet)
}
}
Output: {1 3 4} {0 4 6} {3 4 6}
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.