C++ Program to calculate area of a Enneagon

By Dinesh Kumar

In this tutorial, we are going to see how to calculate the area of Enneagon using C++ program. Here, firstly we will learn about Enneagon, how to calculate the area of Enneagon. Af.... Read More

Wild Pointers in C++

By Anmol Tripathi

In this tutorial, we are going to learn about Wild pointers in C++. wild pointers are also known as uninitialized pointers, these pointers generally point to some of the arbitrary .... Read More

Python program to find pair with the greatest product in an array

By Anmol Tripathi

In this tutorial we are going to learn about how to find pair with the greatest product in array in Python. Suppose we are given an array which contains a number of elements, our t.... Read More

Collect all coins in minimum number of steps in Greedy method in Python

By Dipam Hazra

In this tutorial, we will learn how to collect all coins in a minimum number of steps in Python. The process of collecting coins should be contiguous. So, here we have used the gre.... Read More

Iterative Pair Pattern in Python

By Ujjwal Tyagi

Hey there my fellow python developers, today we are going to learn about iterative Pair Pattern in Python programming. Well, iterative pairs could be understood as the making pairs.... Read More

How to truncate numbers to integers in Python

By Ujjwal Tyagi

Hello there, my dear fellow python programmers. Today we are going to talk about how to truncate numbers to integers in Python. Let’s start by talking about what is truncatio.... Read More

Automate Facebook Login Using Python

By Ujjwal Tyagi

Hello there, my fellow Python programmers, today we are going to learn about how to automate Facebook login using Python programming. For this task, we are going to use selenium an.... Read More

Performing Intersection of two Sorted Linked Lists in C++

By Pranav Prakasan

This article discusses a method for performing the intersection of two sorted linked lists in C++. ‘Intersection‘ refers to finding the elements common to both the sets.... Read More