All Medium Articles
The threads which are always going to run in the background that provides supports to main or non-daemon threads, those background executing threads are considered… Read More
Prerequisite: BeautifulSoup Installation  In this article, we will scrape a quote and details of the author from this site http//quotes.toscrape.com using python framework called BeautifulSoup… Read More
In this article, we will learn How to get the size of a PyGame Window.  Game programming is very rewarding nowadays and it can also… Read More
Regex or Regular Expressions are an important part of Python Programming or any other Programming Language. It is used for searching and even replacing the… Read More
There are multiple ways supported by python in which color can be added to text. This article discusses all with proper examples to help you… Read More
Eclipse is an IDE(Integrated Development Environment) that helps to create and build an application as per our requirement. And Hadoop is used for storing and… Read More
Introduction: Experts expect Artificial Intelligence (AI) to work towards creating a better life to live. They say as more computation power will be available in… Read More
Given a 2D array edges[][] of type { X, Y } representing that there is an edge between the node X and Y in a… Read More
In order to learn about Backpropagation, we first have to understand the architecture of the neural network and then the learning process in ANN. So,… Read More
Given an array arr[] of size N and an integer K, the task is to print all possible ways to split the given array into… Read More
Given an integer N which denotes the number of slots, and an array arr[] consisting of K integers in the range [1, N] . Each… Read More
The biological neural network has been modeled in the form of Artificial Neural Networks with artificial neurons simulating the function of a biological neuron. The… Read More
In this article, we will discuss how to generate a random password of a given length consists of any characters. Approach: The below-given program involves… Read More
The basic idea behind this method is to guess the answer, and then prove it correct by induction. This method can be used to solve… Read More
Flattening is a technique that is used to convert multi-dimensional arrays into a 1-D array, it is generally used in Deep Learning while feeding the… Read More
TF-IDF stands for Term Frequency Inverse Document Frequency of records. It can be defined as the calculation of how relevant a word in a series… Read More
Now a day many social media apps provide so many filters that we can use to make our image inside the app more beautiful and… Read More
Dynamic Views are created when we don’t want to have repeating XML code. In this article we will create a separate layout and inflate them… Read More
We can change body class before the component is mounted in ReactJS using the following approach: Prerequisite: React Component LifeCycle The lifecycle of react components… Read More
Given a string str consisting of pairs of balanced parentheses, the task is to calculate the score of the given string based on the following… Read More