Best of GolangJune 2022

  1. 1
    Article
    Avatar of hashnodeHashnode·4y

    Golang introduction: build a mini Twitter clone

    This article is for those who want to quickly glance over Golang and build a small project. It serves as an introduction into the language. Go excels in the back end with Goroutines and Channels. It offers quick development with a minimalist C-like language.

  2. 2
    Article
    Avatar of hashnodeHashnode·4y

    Let's Simplify Golang : Part 2

    This blog is the second part of the Let's Simplify Golang Series. In the first part, we learned about all the basic concepts in Golang. In this blog, we would be learning about Arrays, Slices and Maps. An Array is a collection of similar data elements.

  3. 3
    Article
    Avatar of itnextITNEXT·4y

    Go’s new sorting algorithm: pdqsort

    Go’s sorting algorithm for Go has changed to something called “pdqsort” The previous algorithm, Quicksort, has a quadratic complexity. This means it has a worst case performance of O(n ^ 2)⁵ . The new algorithm attempts to avoid the worst-case scenario by moving things around.