coding-interviews/main.go

13 lines
200 B
Go
Raw Normal View History

2024-07-08 14:05:01 -04:00
package main
import (
"fmt"
"internal/itertools"
)
func main() {
iterator := itertools.Iterator{}
items := []string{"one", "two", "three", "one", "one"}
fmt.Println(iterator.GetCount(items))
}