1 Min Read
How to check if item exists in a tuple in python
Many times it is required to test if an element is present in a python tuple or to find a value…
5 Min Read
Golang struct
A struct in Golang is a user defined data type which can contain multiple items in key-value pairs. It is…
7 Min Read
Comparator interface in java
What is comparator java.util.Comparator is an interface in java used for sorting or ordering of collections such as a List,…
5 Min Read
Golang Maps
In this tutorial, we are going to look at maps in Golang, how to create them, add entries to a…
1 Min Read
Blank Identifiers
What is blank identifier A Blank identifier is a placeholder for unused values. It is represented by an underscore(_). Since…
Functions
Golang Functions