BLOG

Latest Articles

SOLVED: How to reverse sort slice of integer in GO

There are two methods to sort slice of integer in reverse or descending order. To sort in descending order, you have to implement the sort.Interface interface …

By tuannguyen · 3 min read · GOLANG Solutions

Golang Ticker Explained in Detail [With Examples]

golang ticker is used to perform any task at frequent intervals. golang time.Ticker is similar to time.Timer, but its channel delivers more elements at regular …

By tuannguyen · 7 min read · GO