#go
Read more stories on Hashnode
Articles with this tag
A queue is a very useful data structure where one can store, add, and remove objects with the “First in, First out” (FIFO) principle. Queues are very...
A struct is a composite datatype that groups together many fields of different types into one object. This blog post will go over the basics of how to...
Strings are sequences of characters used to represent text, and they can contain letters, digits, and special characters. In Go, strings are...
Maps in Go are the exact same as dictionaries in Python in that they store several key-value pairs. In this post, I will go over how to initialize and...
An array is one of the fundamental data structures for programming. By being able to store multiple different values of the same type, arrays are...
Just like printing to the console, reading input from the console with Go is very straightforward. This post aims to teach you just that by going...