Word Break Problem in C++

By Arpit Jain

Hi guys, today we will try to solve Word Break Problem in C++. It is one of the most asked problems in placement interviews. I would recommend you to please study the topic recurs.... Read More

Singleton in C++

By NIVEDITA KUMARI

In this tutorial, we will learn about Singleton in C++. In C++ Singleton pattern is a design pattern that puts a limit on a class to instantiate its multiple objects. The ‘Si.... Read More

Static Const Member Variable in C++

By Prabhnoor Singh

In this article, we will be learning about the static const member variable in C++ which is a combination of const which is a type qualifier and static which is a storage specifier.... Read More

Closest leaf node to a given node in Binary Tree in C++

By Saksham Agarwal

In this tutorial, we’ll see how to find the closest leaf to a node in a Binary tree in C++. Some Terminology: Leaf node: A leaf node in a binary tree is a node that has no ch.... Read More

How to speed up Program execution using Pragma in C++

By Shristi Singh

In this tutorial, we will learn about How to speed up Program execution using Pragma in C++. For that, we first need to know all about Pragma. So, Pragma is a pre-processor directi.... Read More

Create real time currency converter app in Android Studio

By Kamalpreet Singh

In this tutorial, we will learn to create a Currency converter app in android using java. We can develop an app in android either using java or kotlin. To develop an android projec.... Read More

get_weights() and set_weights() functions in Keras layers

By Suchita Sriramka

In this article, we will see the get_weights() and set_weights() functions in Keras layers. First, we will make a fully connected feed-forward neural network and perform simple lin.... Read More

C++ program to check if leaf traversal of two Binary Trees is same

By Himanshu Baranwal

In this tutorial we will learn how to tell if leaf traversal of two binary trees is the same or not. Leaf traversal of a tree means traversing each leaf of the binary tree from the.... Read More