You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-algorithms/utils.go

18 lines
268 B
Go

package utils
import (
"math/rand"
"time"
)
func RandArray(n int) []int {
// needed a seed input else it will generate the same number
rand.Seed(time.Now().UnixNano())
arr := make([]int, n)
for i := 0; i <= n-1; i++ {
arr[i] = rand.Intn(n)
}
return arr
}