Go arrays and slices

All you ever wanted to know about Go arrays and slices

Sau Sheong
Go Recipes
Published in
13 min readMay 22, 2022

--

Data structures are simply ways to organise and store data such that it can be used effectively. There are a large number of different types of data structures, from really basic ones such as arrays to more complex ones such as B+ trees and bloom filters. To be an effective programmer, it’s important to have a good understanding of data structures, at least some of the fundamental ones.

--

--