mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
15 lines
204 B
Go
15 lines
204 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/container/garray"
|
|
)
|
|
|
|
|
|
func main () {
|
|
a := garray.NewSortedIntArray(0)
|
|
a.Add(0)
|
|
fmt.Println(a.Slice())
|
|
fmt.Println(a.Search(0))
|
|
}
|