Skip to content

Commit 1926fa6

Browse files
authored
Update ghost1.go
1 parent 61bb1a1 commit 1926fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghost1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ func atoi(str string) int {
356356
}
357357

358358
func buildblock(size int) string {
359-
letters := []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890")
359+
letters := []rune("1234567890")
360360
s := make([]rune, size)
361361
for i := range s { s[i] = letters[rand.Intn(len(letters))] }
362362
return string(s)

0 commit comments

Comments
 (0)