Iterating over JavaScript Array in Different ways

By Vikneshwar GK

Iterating over an array means going through each and every element present in the array and perform some function. In Javascript, there are several ways to iterate over an array. L.... Read More

Dojo Eating apples – A Binary search problem in C++

By Deepanshu

This problem is about how can we use binary search algorithm and use it to solve complex problems we will learn about the concepts and algorithm used and then will see its implemen.... Read More

Prefix Expression Evaluation In C++

By Anurag Tiwari

In this tutorial, we shall learn to evaluate prefix expression in C++. We shall use stack data structure from the STL. The computer does not know how to evaluate infix expression, .... Read More

Merge two sorted linked list without any extra space in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to merge two sorted linked lists without any extra space in C++. I hope you know about the linked list and how it stores the data. So.... Read More

Python program to find roots of an equation using secant method

By Ranjeet V

Hello everyone, in this tutorial, we are going to learn how to implement the secant method in Python to find the roots of a given equation of the form f(x) = 0. Here’s the al.... Read More

Dividing a Column into Two Columns in Pandas Dataframe

By Srishti Chakraborti

In this tutorial, we will solve a task to divide a given column into two columns in a Pandas Dataframe in Python. There are many ways to do this. Here we will use Series.str.sp.... Read More

Map External Values to Dataframe in Python | Pandas

By Srishti Chakraborti

In this tutorial, we are going to solve the task of mapping external values to the Pandas dataframe in Python language. We will show many ways to do this. We see here a term call.... Read More

C++ program to check whether a number is Trojan Number

By Abinash Reddy

In this article, we will learn how to check whether a given number is a Trojan Number or not in C++. A number is said to be a trojan number if it is a strong number but not a perfe.... Read More