Username Suggestions based on Constraints | Python

By Karan Trehan

In this article, we will see how to generate Username Suggestions based on certain constraints in Python language. Usernames are very common on the web nowadays. They are the short.... Read More

Write a Python program to print all twin primes less than N

By Sai Mukesh Reddy Gutha

Hi!, In this article, we are going to write a Python program to find and print all the Twin Primes less than the user input N. What are Twin Primes? We know that Prime Numbers are .... Read More

Decoding Barcodes in Python (using pyzbar)

By Karan Trehan

In this blog, we will demystify the mystery of Decoding Barcodes from images in Python. We will be making use of pyzbar module in achieving the same. Decoding Barcodes is easy in P.... Read More

Check if a given word contains consecutive letters in Python using Functions

By Souhardya Ganguly

In this Python tutorial, we shall check whether a given word contains a sequence of two consecutive letters or not using ASCII values. What do we mean? If a given word has a substr.... Read More

Program to find minimum characters to be added at front to make a string palindrome in C++

By Prayas Sambhare

Hello! In this article, we are going to learn how to find the minimum number of characters to be added at the front of the string to make the string palindrome. We are going to dis.... Read More

How to rotate linked list by k nodes in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to rotate singly linked list by k nodes in a clockwise fashion in C++. I hope you know about the linked list and how it stores the da.... Read More

Extracting n Largest Dictionary Keys in Python

By Srishti Chakraborti

In this task, we are going to solve a task of extracting n number of dictionary keys in descending order in Python. Further for this, we will use the solved(), lambda, and reve.... Read More

C++ program to convert infix to postfix using stack

By Prayas Sambhare

Hello. In this tutorial, we are going to learn how to convert an infix notation to postfix notation using the stack data structure in C++ program. What are infix and postfix notati.... Read More