Message passing in C++

By Shubham Giri

Message Passing the Topic itself gives a meaning “Passing something”. So in this topic, we are gonna learn What is Message Passing and how it works in C++. From the ba.... Read More

const_cast in C++

By Harsh Gupta

In this tutorial, we will learn const_cast in C++ with examples. There are 4 types of casting operators as follows: 1. const_cast 2. static_cast 3. dynamic_cast 4. reinterpret_cast.... Read More

Image Pyramid using OpenCV Python

By Harsh Goel

inIn this tutorial, we will get to know the method to make Image Pyramid using OpenCV Python. Here, we will get to know about Image Pyramid and its functions using OpenCV Python. A.... Read More

Check whether kth bit is set or not in Python

By Harsh Gupta

Bit plays a very important role while solving programming problems. In this article, we have discussed how to check whether the kth bit of a number is set or not in Python. We have.... Read More

Group words with the same set of characters in Python

By Devansh Sharma

Grouping words with the same set of characters in Python is also known as Group Anagrams, Given a list of words with the same set of characters with different positions in word li.... Read More

Matrix Diagonal Sum in C++

By Palani M

In this tutorial, we will be writing a program to calculate sum of the diagonal elements of a matrix in C++. Diagonal Matrix Sum in C++ This question was a part of the Leetcode Biw.... Read More

TreeMap put() and putAll() methods in Java

By Shradha Jadhav

We will study about put() and putAll() methods in Java, in the present tutorial. Both put() and putAll() methods belongs to TreeMap class, which is an implementation class of Navig.... Read More

Find maximum sum of all diagonals in matrix Python

By Palani M

In this tutorial, we will learn how we can traverse through all diagonals in a 2D matrix in Python. Find the maximum sum of all diagonals in matrix Python This question is based on.... Read More

Related Posts