We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61bb1a1 commit 1926fa6Copy full SHA for 1926fa6
ghost1.go
@@ -356,7 +356,7 @@ func atoi(str string) int {
356
}
357
358
func buildblock(size int) string {
359
- letters := []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890")
+ letters := []rune("1234567890")
360
s := make([]rune, size)
361
for i := range s { s[i] = letters[rand.Intn(len(letters))] }
362
return string(s)
0 commit comments