Мастер-класс по Google Golang
Научитесь постепенно осваивать Google Golang и создавать проекты с помощью Go. Вы только что наткнулись на самый полный и углубленный продвинутый курс программирования на Go онлайн. Это всеобъемлющие учебное пособия охватывают все что вам когда-либо понадобится.
Could I ask you to update this course please?
Thanks in advance!
Please update here!
update please
For newbies it won't be enough, for those like me with some experience in other languages - i'd rather see more real life examples.
Here's the method shuffles items properly.
func (d deck) shuffle() {
rand.Seed(time.Now().UnixNano())
rand.Shuffle(len(d), func(i, j int) {
d[i], d[j] = d[j], d[i]
})
}
Basically, you need to add rand.Seed(time.Now().UnixNano()) before calling rand.Intn()
Last updated 7/2021
Не плохо бы обновить)