Longest Common Subsequence using Dynamic Programming

By Ravi Raj

In this CPP tutorial, we are going to discuss how to find the length of a maximum common subsequence of two strings. Finding the Longest Common Subsequence using Dynamic Programmin.... Read More

What are Django URLs and How to create them(Part VII)

By Aayush Gupta

In this tutorial, we are going to learn about Django URLs.  How URLs with Django and how to create Django URLs for your own web application. This tutorial is a part of our series .... Read More

Selection Sort : How to implement it in Python ?

By Aayush Gupta

In this tutorial, we will learn the procedure of sorting an unsorted list using the pre-defined algorithm of Selection Sort in Python. Also, have a look at other sorting methods : .... Read More

Get voice input with microphone in Python using PyAudio and SpeechRecognition

By Saruque Ahamed Mollick

In this Python tutorial, we will show you how to take voice input with microphone in Python using PyAudio and SpeechRecognition. To do this task we require the following things ins.... Read More

Find all the microphone names and device index in Python using PyAudio

By Saruque Ahamed Mollick

If you want to work with a microphone in your Python program, then you must have to know the device id of your mic. In this python tutorial, I will make it easy to get the mic id o.... Read More

How to implement Binary Tree in Python

By Abhilash Bandla

This Python tutorial helps you to understand what is Binary tree and how to implements Binary Tree in Python. First, we will learn what is Binary Tree. Definition:- A tree in which.... Read More

Create a Calculator using Switch case

By Mayank Garg

In this program, we will design a calculator using a switch case in Java. In this program, we have also use the scanner class. Scanner class is used for the user input without the .... Read More

OTP generation using Random module in Python 3.x or earlier

By Pavitra Walia

The world is changing so rapidly. There have been various advancements in technology. Due to which OTP has become an integral part of everything to ensure security and privacy. Her.... Read More

Related Posts