Estou tentando gerar uma seqüência aleatória no Go e aqui está o código que escrevi até agora:
package main
import (
"bytes"
"fmt"
"math/rand"
"time"
)
func main() {
fmt.Println(randomString(10))
}
func randomString(l int) string {
var result bytes.Buffer
var temp string
for i := 0; i < l; {
if string(randInt(65, 90)) != temp {
temp = string(randInt(65, 90))
result.WriteString(temp)
i++
}
}
return result.String()
}
func randInt(min int, max int) int {
rand.Seed(time.Now().UTC().UnixNano())
return min + rand.Intn(max-min)
}
Minha implementação é muito lenta. A propagação usando time
traz o mesmo número aleatório por um certo tempo, portanto o loop itera repetidamente. Como posso melhorar meu código?