Vigenere Cipher Using Python

By Abinash Reddy

In this article, we will learn Vigenere Cipher using Python. First, let’s discuss a few points vigenere cipher. What is Vigenere Cipher Vigenere Cipher is a technique for enc.... Read More

Naming Conventions for member variables in C++

By Tanu Kumari

In this tutorial, we will discuss C++ Naming Conventions for member variables and what are the benefits of following the naming convention. Firstly, Learn about the Naming Conventi.... Read More

Check whether password is in the standard format or not in Python

By HIMANSHU ZAVERI

In this post, we will check whether a password is in the standard format or not using regular expressions in Python. If you are new to regular expressions, then here is the link fo.... Read More

Knuth-Morris-Pratt (KMP) Algorithm in C++

By Prayas Sambhare

In this tutorial, we are going to learn about the KMP algorithm in C++ with code implementation. There are other algorithms like Naive Algorithm and Rabin Karp Algorithm which are.... Read More

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