Posts by Aayush Dubey
Author Biographical Info: Not available
In this tutorial, we will design Google’s homepage using HTML/CSS. This is just a tutorial for learning purposes, this is not meant to use the design in any other use. Larry .... Read More
In this tutorial, we will see how to find the maximum number possible by doing at most K swaps in the number in Python. Consider the following examples: INPUT: Number=189 K=1 OUTPU.... Read More
In this tutorial, we will see how can we calculate the Average of a stream of numbers in Python. Average is also known as the mean. Average or mean are terms related to mathematics.... Read More
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