Find the maximum GCD of the siblings of a Binary Tree using C++

By Richa Sirwani

GCD (Greatest Common Divisor) is the largest number that divides two numbers. In this tutorial, we will find the maximum GCD of the siblings of a binary tree using C++. The vector .... Read More

Print all paths from a given source to a destination in Python

By Vineet Raj

In this article, we will learn how to print all the paths from a given source to a destination in Python. We have given a graph, source vertex, and destination vertex. This proble.... Read More

Calculate largest multiple of 3 in Python

By Vineet Raj

In this article, you will learn to Calculate the largest multiple of 3 in Python. Problem: largest multiple of 3 in Python from the given digits We have to find the largest multipl.... Read More

Fetch top 10 starred repositories of user on GitHub using Python

By Vineet Raj

In this tutorial, you will learn to fetch the top 10 starred repositories of the user on top 10 starred repositories in Python. Github is a platform where all developers come toget.... Read More

Vertical Order Traversal of Binary Tree in Python

By Om Avhad

Hello everyone, let’s learn how to traverse a Binary Tree in Vertical Order Traversal with Python. Binary Trees are traversed using various different types of traversal metho.... Read More

Remove None Nested Records in Python

By Aryaman Kakad

In this tutorial, we will be learning how to remove none nested records in Python. We sometimes need to remove the data which have all key’s values as Null/None in nested rec.... Read More

Mutual Friendship of Classes in C++

By Mallika Gupta

Here in this tutorial, we will learn about what is Mutual Friendship in classes and how it can take place with the C++ code example. It is one of the most famous concepts in Object.... Read More

Memory Leaks in C++

By Palani M

In this article, we will learn about memory leaks in C++. We will see a basic introduction about memory allocation and its types. We will then proceed to learn about memory leaks i.... Read More