Find Minimum cost to connect all cities in C++

By Ramneeq Sodhi

In this article, we are going to learn how to find the minimum cost to connect all cities in C++ programming. The problem is that we are given a number of cities there is a specifi.... Read More

JVM shutdown hook in Java with example

By Shradha Jadhav

Let’s see about the JVM shutdown hook in Java in this tutorial. The JVM, which stands for ‘Java Virtual Machine’ normally shutdowns if the program exits normally .... Read More

Aadhaar Card Number Validation Using Javascript

By ROHIT PANDEY

Here we will learn how to Validate Aadhaar Card Number in Javascript. To validate Aadhaar Card Number using javascript we will use Regular Expression and we will see how to use reg.... Read More

Group all Anagrams together in C++

By Anurag Verma

In this tutorial, we are going to learn to group all the anagrams together in a given vector of strings with C++. For instance, the given vector of strings is [“rams”,&.... Read More

How to check for Majority Element in an array in C++

By Akash Dileep

In this tutorial, we are going to see some ways to find the majority element in an array in C++. A majority element in an array is that element whose frequency is greater than R.... Read More

Transpose of a Matrix (One Liner)| Python

By Harshal Patel

Hello everyone, in this tutorial we are going to learn a trick to find the transpose of a matrix of any given dimension with Python. A normal way to do this is by initializing two .... Read More

tf.DeviceSpec in Tensorflow with example

By Mir Shaharayan Ali Khan

Hi guys, This tutorial is to briefly understand about tf.DeviceSpec in Tensorflow. The “tf.DeviceSpec” is one of the Tensorflow’s API that describes where the sta.... Read More

Java program to Rotate bits

By Shradha Jadhav

Let’s learn a Java program to rotate bits. Firstly, we have to learn about bit rotation in this tutorial. In the Bit rotation is an operation, shifting of the bits happens. I.... Read More