Program to Print all the Leaders in the array in Java

By Aniruddha Ghosh

Hello everyone! Today we will Write a Program to print all the Leaders in the array in Java. So you are given an array and you have to find the leaders. A leader in an array is the.... Read More

Find if a given sequence of characters are present in a parent string in C++

By Anurag Verma

In this tutorial, we are going to learn to check whether a given string is a part of a given parent string or not in C++. For example, if the given parent string is “codespee.... Read More

Minimum Cost Path Problem in C++

By Aniruddha Ghosh

Hello everyone! Today we will learn how to solve the Minimum Cost Path Problem in C++. At first, quickly see the problem statement. You are given an N*N grid in which every value r.... Read More

pandas.query() method with examples

By Praveen Kumar

We know how the pandas library written in Python plays an important role in Data manipulation and Analysis. In this tutorial, We will understand Dataframe.query(),one of the filter.... Read More

Count set bits in an integer using Brian and Kerningham Algorithm in Java

By Harsh Gupta

In this article, we will learn Brian and Kerningham Algorithm to count the number of set bits of a number in Java. Java program to count set bits in an integer using Brian and Kern.... Read More

Build an Age Calculator using Python Tkinter

By Jaspreet Singh

Hello coders, In this program we are going to create an age calculator using Tkinter with GUI (Graphical user interface) in Python. The most commonly used toolkit is Tkinter only. .... Read More

Perform Union and Intersection of two linked lists in C++

By Gorakh Chavan

In this post, we will learn about finding intersection and union from two linked lists in C++. The union of two arrays is the set of all elements that are either in A or in B.  I.... Read More

Find minimum number of deletions required to make a string an anagram in C++

By Anurag Verma

In this tutorial, we are going to learn about converting a lowercase string into an anagram. Then we will find minimum number of deletions required to make a string an anagram in C.... Read More