Generating Random Numbers
Let’s learn how to generate random numbers in Go.
We'll cover the following...
Random number generation is an art as well as a research area in computer science. This is because computers are purely logical machines, and it turns out that using them to generate random numbers is extremely difficult!
Random numbers generation in Go
Go can help us with that using the functionality of the math/rand
package.
Seed generation
Each random number ...