Check if a string is lapindrome or not in Python

By D Ajay

Hello Coders, this tutorial deals with a program to check whether a string is lapindrome or not in Python. Also, we can say that we will check if the strings have same set of chara.... Read More

How to draw line using coordinates in Python

By Madhav

In this tutorial, I am going to discuss how to draw a line using coordinates in Python. In Python, I am going to use matplotlib for the drawing line in Python. Draw a line using co.... Read More

Strong password (String problem) in C++

By Vishal Kumar

In this tutorial, we will solve the strong password problem in C++ which will have certain mentioned constraints. Let us define our constraints then we will solve the problem. Its .... Read More

Find the number of months remaining in a year in Python

By Prathamesh Ballal

In this tutorial, we are going to learn how to find the number of months remaining in a year in Python, to find this we required datetime package. Find remaining month using dateti.... Read More

Remove duplicate characters from a string in c++

By Sakshi Gupta

In this tutorial, we will learn how to remove duplicate characters from a given string using the C++ program. We will learn it in two approaches. The first one is simple and uses b.... Read More

Print all Happy numbers within given range in Python

By Siddharth Shankar Debata

In this tutorial, we will learn to print all the happy numbers within the given range in Python. If you want a Python program to display happy numbers within the range given by the.... Read More

Find the HCF of two numbers in Python

By Siddharth Shankar Debata

In this tutorial, we will learn to find HCF (Highest Common Factor) of two numbers in Python. The Highest Common Factor (HCF) or Greatest Common Divisor (GCD) is the largest positi.... Read More

Sum of geometric progression series in Python

By Siddharth Shankar Debata

In this tutorial, we will learn to display the sum of geometric progression series in Python. In a geometric progression, the ratio of any two consecutive numbers is the same. And .... Read More