Posts by Aayush Dubey

Author Biographical Info: Not available

Replicate the google.com page design using HTML and CSS

By Aayush Dubey

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

Python Program to find Maximum number possible by doing at-most K swaps

By Aayush Dubey

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

How to calculate Average of a stream of numbers by program in Python

By Aayush Dubey

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

How to Print all permutations in sorted (lexicographic) order in Python

By Aayush Dubey

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

Implementation of Comb sort in Python

By Aayush Dubey

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

ORB Feature Detection in Python OpenCV

By Aayush Dubey

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

Understanding Gaussian Blur using OpenCV in Python

By Aayush Dubey

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

A program in Python to demonstrate Finite Automata

By Aayush Dubey

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

Related Posts