Python | Check sum of Covered and Uncovered nodes of Binary Tree

By Taanvi Goyal

In this solution, we are going to see how to check sum of Covered and Uncovered nodes of Binary Tree in Python programming. What is the covered and uncovered node? In a binary tree.... Read More

Using for loop in Flask | Python

By Priya Bansal

In this tutorial, we’ll be learning the implementation of using for loop in the Flask Python framework. Basically, Flask is a micro web framework written in Python. It was de.... Read More

Detect beard from a face in Python

By Anubhav Aery

In this tutorial, we are going to learn how to detect beard form a face in Python using a webcam. We’ll be using Pycharm IDE to solve this problem. We will use OpenCV in orde.... Read More

Find Floor in a Sorted Array in Python

By Shoif Md Mia

In a sorted array floor of value (say, x) means the maximum value present in the array which is less than or equal to that value (x). Let’s clarify the problem with some exam.... Read More

How to convert a Set to Stream in Java

By Shivam Purohit

Hello programmers, in this tutorial you will learn how to convert a Set to Stream in Java. In this tutorial, we are going to add some integers in a HashSet and then convert those i.... Read More

Exception Handling Comparison in C++ and Java

By Priya Bansal

Today we’ll see a comparison of exception handling in C++ and Java. Exception handling is one of the important features in the programming world. It tells the compiler how to.... Read More

Implementing Count-Min Sketch in Java

By Priya Bansal

Today, we’ll be learning about how to implement count-min sketch in Java programming language. Implementing a count-min sketch in java involves the use of hash functions and .... Read More

Phone Directory Implementation in C++

By Ramneeq Sodhi

Here we are going to make our own C++ program to make a phone directory. So what is a phone directory and how to create it? A phone directory is a collection of data, which consist.... Read More