Exercices about Arrays, Slices and Maps

Hi there,
I’m currently taking the Golang course and it is really exciting. I’ve done the exercice on arrays, slices and maps… I’d like to have more exercices to deepen my knowledge.
Do you know where I can find exercices about them?
Thanks a lot and best regards,

You’ll get some more if you do the Advanced golang course as well.

Meanwhile, set yourself up with VSCode on your laptop, install latest version of golang, and the go extension for VSCode and experiment.

Concentrate more on slices (and the slices package which contains many functions for manipulating them) - there are only a few specialized cases were arrays may be preferred. I write a lot of Go code and rarely have need for fixed size arrays.

1 Like