Skip to content

Category Archives: Go Language

A structure or struct in Golang is a user-defined type that allows to group/combine items of possibly different types into a single type. Any real-world… Read More
Go language provides inbuilt support implementation of basic constants and run-time reflection to operate sort package. Golang is the ability for functions to run independently… Read More
The three dots (…) in Golang is termed as Ellipsis in Golang which is used in the variadic function. The function that called with the… Read More
ParseFloat function is an in-build function in the strconv library which converts the string type into a floating-point number with the precision specified by bit… Read More
strings.ToTitleSpecial() Function in Golang is used to returns a copy of the string s with all Unicode letters mapped to their Unicode title case, giving… Read More
strings.ToUpperSpecial() Function in Golang is used to returns a copy of the string s with all Unicode letters mapped to their upper case using the… Read More
Command-line arguments are a way to provide the parameters or arguments to the main function of a program. Similarly, In Go, we use this technique… Read More
strings.IndexAny() Function in Golang is used to returns the index of the first instance of any Unicode code point from chars in the original string.… Read More
strings.ToLowerSpecial() Function in Golang is used to returns a copy of the string s with all Unicode letters mapped to their lower case using the… Read More
Given an array of size n. Your task is to remove the duplicates from the array. Examples: Input : array: 1 2 1 2 1… Read More
Go language provides inbuilt support for implementing utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths with… Read More
Go language interfaces are different from other languages. In Go language, the interface is a custom type that is used to specify a set of… Read More
Golang supports time formatting and parsing via pattern-based layouts. In Go, the current time can be determined by using time.Now(), provided by the time package.… Read More
In Golang, reflect.DeepEqual function is used to compare the equality of struct, slice, and map in Golang. It is used to check if two elements… Read More
ring.Link() function in Golang is used to connect two ring r and ring s ring.next() function connect last node of ring r to first node… Read More

Start Your Coding Journey Now!