String Rotation using String Slicing in Python

By Srishti Chakraborti

In this tutorial, we are going to solve a task of rotating a string using the method of String slicing in Python. For doing this problem, first we need to know about a string in Py.... Read More

Longest Proper Prefix Suffix Array in C++ efficient approach(precursor to KMP algorithm)

By Prayas Sambhare

In this tutorial, we are going to learn about how to construct the longest proper prefix suffix array(LPS array) in C++. In this blog, we are going to discuss an efficient solution.... Read More

How to Sort an Array contains 0s,1s ,2s in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to sort an array containing elements as 0,1,2 in C++ program. It seems like an easy question but to solve it with an efficient approa.... Read More

Python Program to convert a word into Pig Latin form using Functions

By Souhardya Ganguly

In this Python tutorial, we will learn how to convert a sentence into its Pig Latin form. To do so, we shall be using:- Functions split() function in Python Substrings in Python Co.... Read More

Python program to check if a network port is open

By Abinash Reddy

In this Python programming article, you are going to learn how to check if a particular port is open. We are using socket.socket() and socket.connect_ex() to check if a network por.... Read More

Convert Audio to Video using Static Images in Python

By Karan Trehan

In this tutorial, we will see how to convert an Audio File (MP3) to a Video File (MP4) using static images in Python. In other words, convert Audio to Video. We are going to follow.... Read More

Flipping the binary bits in Python

By Abinash Reddy

A binary value is a combination of 0’s and 1’s. For instance, the binary value of 12(decimal) is 1100(binary). After flipping the binary bits it looks like 0011. In thi.... Read More

Alphabet Rangoli Pattern in Python

By Abinash Reddy

In this tutorial, we will learn how to print the alphabet rangoli pattern when the size of the pattern is given. Alphabet Rangoli Pattern When the size of the pattern is given we n.... Read More

Related Posts