All Medium Articles
Preprocessor Directives are programs that process our source code before compilation. There are a number of steps involved between writing a program and executing a… Read More
Given a numeric string str of length N, the task is to find the sum of all possible expressions by inserting the ‘+’ operator between… Read More
Given an array of equal-length strings arr[], the task is to make all the strings of the array equal by replacing any character of a… Read More
Given string str, consisting of three different types of characters ‘0’, ‘1’ and ‘?’, the task is to convert the given string to a binary… Read More
In this article, we are going to learn about how to place the cursor at the end of the text in a text input element… Read More
For making a video call app, It is required that each and every client send their video and audio stream to all the other clients.… Read More
In this article, we have to pass a comment for PHP code by using some simple basic syntax. Comments are helpful to understand the complex… Read More
Following are some simple steps in order to connect our static Web Page with Firebase.  Step-by-Step Implementation Step 1: Firstly, We are going to create… Read More
Scrapy is open-source web-crawling framework written in Python used for web scraping, it can also be used to extract data for general-purpose. First all sub… Read More
Django provides us Admin Panel for it’s users to look over the database and other activities. If you dont know how to create superuser then… Read More
PyCharm is one of the most popular Python-IDE developed by JetBrains used for performing scripting in Python language. PyCharm provides many useful features like Code… Read More
Django offers a variety of built-in template tags such as {% if %} or {% block %}. However, Django also allows you to create your… Read More
Given a positive integer N, representing the count of players playing the game and an array of strings arr[], consisting of the numeric strings made… Read More
Given a 2D matrix mat[][] of size N * M, the task is to find the median of Bitwise XOR of all possible submatrices from… Read More
Given an integer N, the task is to find the value of the expression ( N1 * (N – 1)2 * … * 1N) %… Read More
In this article, we are going to see how to add text inside the plot in Matplotlib. The matplotlib.pyplot.text() function is used to add text… Read More
In this article, we will learn different ways to create subplots of different sizes using Matplotlib. It provides 3 different methods using which we can… Read More
Prerequisites: Tkinter File organization is helpful when you are trying to find a specific one in a pool of files and directories. It seems time-consuming… Read More
Matplotlib is a Python library which is widely used by data analytics. Matplotlib.pyplot.errorbar()  is a pyplot module consisting of a function which provides a MATLAB… Read More
Given a number, the task is to write a Python program to calculate the square of the given number. In this article, we will see… Read More