Posts by Aayush Dubey
Author Biographical Info: Not available
In this tutorial, we will see how to find all permutations of a given string in alexicographically sorted manner with Python. Dictionary is an example of a group of words sorted in.... Read More
Hello Everyone! In this tutorial, we will learn about Comb Sort and how to implement Comb Sort in Python. The first algorithm which most of the students learn is Bubble Sort. It is.... Read More
Hello Everyone! In this tutorial, we will see what is ORB feature detector and how can we implement it in Python. ORB stands for Oriented FAST and rotated BRIEF. In 2011, Opencv la.... Read More
In this tutorial, we will see: What is Gaussian blur? How can we apply gaussian blur to our images in Python using OpenCV? Gaussian Blur is a smoothening technique which is used to.... Read More
Hello Everyone! In this tutorial, we will see how can we make a program in Python to work as finite automata. Here a quick review of Finite Automata(FA). Finite Automata A F.... Read More
In this tutorial, we will see how can we find Nth word in a given string in Python. Often we come across situations where we don’t want the entire string but only a particula.... Read More
In this tutorial, we will see how to find all possible pairs with a given sum in Python lists. Lists are similar to arrays in C++ and java but much easier to use. Lists are widely .... Read More
In this tutorial, we will see What is Feature scaling in Machine Learning? Why is it so important? How can we do feature scaling in Python? In Machine learning, the most important .... Read More