Go 24 Oct 2022Getting to Know Hashes Cryptography in GolangHashes & CryptographyThe hash function takes a set of data and reduces it to a smaller fixed size. Hash is … 2 mntRead
Go 24 Oct 2022Get to know Container List and Sort in GolangIn addition to arrays and maps, Go has several more collections available under the container package. … 3 mntRead
Go 10 Oct 2022Get to know the Standard String Library in GolangAs programmers who are learning Go Lang, we also need to know Go’s default library packages so that we … 3 mntRead
Go 10 Oct 2022Get to know the Input Output Library in GolangBefore studying the Golang IO library, there are lots of functions in the IO library but the most important … 2 mntRead
Go 17 Aug 2022Get to know functions, multiple returns, variadic and closures in GolangSecond FunctionConsists of input, output. Until now, we can only use the Go program for play functions like … 3 mntRead
Go 01 Aug 2022Get to know variables and constants in GolangVariablesThe following is an example of the basic implementation of using variables in the program below go … 5 mntRead
Go 19 Apr 2021How to implement Binary Search and Tree GolangBasic DefinitionData structure Binary Search and Tree is a pattern used for tree -based search. Before you … 4 mntRead
Go 15 Apr 2021How to implement queue (queue) in Go LanguageBasic DefinitionQueue or often we know is a queue data structure where the data we enter will be delivered, in … 2 mntRead
Go 15 Apr 2021How to Determine Consonant Vowels in GolangIntroductionDetermining consonant vowels here will be divided into several examples. Later we will know better … 2 mntRead
Go 13 Apr 2021How to Implement Stack in GolangWhat is a stack?Stack is one that is commonly used in programming or computer storage systems. For … 3 mntRead
Go 09 Apr 2021How to implement a single double linked list in GolangBasic DefinitionIf you’ve read and read about the Linked List, you can first read Santekno’s post … 3 mntRead
Go 03 Sep 2020Getting to Know Pointers in GolangWe know that sending a variable to a function can be a parameter or a pointer. This pointer is usually a data … 2 mntRead