Golang : How to shuffle elements in array or slice?
Problem :
You have an array or slice with elements in natural order and you want to shuffle the elements.
Solution :
Use rand.Seed
function to randomize the elements position inside the array or slice.
For example :
package main
import (
"fmt"
"math/rand"
"time"
)
func shuffle(arr []int) {
t := time.Now()
rand.Seed(int64(t.Nanosecond())) // no shuffling without this line
for i := len(arr) - 1; i > 0; i-- {
j := rand.Intn(i)
arr[i], arr[j] = arr[j], arr[i]
}
}
func main() {
//list := rand.Perm(25)
list := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
fmt.Printf("Original : %v\n", list)
shuffledList := list
shuffle(shuffledList)
fmt.Printf("Shuffled : %v\n", shuffledList)
}
Output :
Original : [1 2 3 4 5 6 7 8 9 10]
Shuffled : [10 3 9 8 2 1 4 6 7 5]
See also : Golang : Generate random elements without repetition or duplicate
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+31.7k Golang : Convert an image file to []byte
+9k Golang : Gonum standard normal random numbers example
+5.6k Golang : Struct field tags and what is their purpose?
+32.9k Delete a directory in Go
+7.2k Golang : Of hash table and hash map
+17.9k Golang : How to log each HTTP request to your web server?
+16.7k Golang : How to generate QR codes?
+11.7k Golang : GTK Input dialog box examples
+6k Golang : Convert Chinese UTF8 characters to Pin Yin
+8.9k Golang : Capture text return from exec function example
+10.1k Golang : How to check if a website is served via HTTPS
+5.3k Unix/Linux/MacOSx : How to remove an environment variable ?