C++ program to find the median array for Binary tree

By Abinash Reddy

In this article, we will learn how to find the median array for a Binary tree in C++. A median array is an array that formed with help of Inorder, Preorder, Postorder traversal of .... Read More

MasterCard number validation using Regular Expression in Python

By Abinash Reddy

In this article, we will learn how to check whether the given string is a valid MasterCard number or not using Regular Expression in Python. A valid MasterCard number must satisfy .... Read More

howdoi in Python

By Ranjeet V

Hello everyone, in this post, we will learn about an interesting tool howdoi in Python. Python howdoi is a command-line tool that is very helpful especially for beginners. Using th.... Read More

How to get Users of Windows/Linux Systems using Python?

By Sai Mukesh Reddy Gutha

Hello Geek! In this article, we will use Python to get the current users on the Windows and Linux Systems. The method that we are going to use to get the current users is users(). .... Read More

Implementation of Associative Array in Java

By Ranjeet V

In this post, we will learn how to implement Associative Array in Java. An associative array is an array with named indexes. It consists of elements in form of key-value pairs wher.... Read More

Python Program to Calculate Area of any Triangle using its coordinates

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we are going to learn how to calculate the area of any triangle using its coordinates with the help of a Python program. Formula to Calculate Area of a .... Read More

Python Program to check if an input matrix is Upper Triangular

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we will write a Python program to check if an input matrix is an Upper Triangular matrix. Upper Triangular matrix An Upper Triangular Matrix is a square.... Read More

Long jumps – Dp problem in C++

By Deepanshu

Now we will be going to solve a dynamic programming problem Long jumps in C++. Problem description A person is currently standing on point 0 in the 1-D array and jumps to reach poi.... Read More