BLOG

Latest Articles

How to parse multiple inputs from user in Golang

The following are functions used to read or parse users' inputs in Golang:- fmt.Scanln(), fmt.Scanf(), bufio.NewReader(). These functions can parse single or …

By admin · 5 min read · GO

Golang array contains specific element or not? [SOLVED]

In this tutorial we have covered different examples to cover golang array contains elements. Use for loop to check for string, int or float64 element in array …

By tuannguyen · 5 min read · GOLANG Solutions