All Medium Articles
Question 1: Solve for factors of x2 + 12x – 45 Solution: Given: x2 + 12x – 45 To factorize the following expression we have… Read More
Django has become one of the popular frameworks over the past few years. Often, after creating your Django project, you are confused, about how to… Read More
When site A wants to access content from another site B, it is called a Cross-Origin request. As it is disabled for security reasons, B… Read More
Building a URL Shortener, Is one of the Best Beginner Project to Hone your Skills. In this article, we have shared the steps to build… Read More
Prerequisites: Predicates and Quantifiers, Learn-One-Rule, Sequential Covering Algorithm Before getting into the FOIL Algorithm, let us understand the meaning of first-order rules and the various… Read More
A MySQL connector is needed to generate a connection between Python and the MySQL server. Here we will import mysql.connector library to get the average… Read More
Prerequisite – Proof of Work (PoW) As we know, the idea of Proof of Work was by Cynthia Dwork and Moni Naor. This permissionless consensus… Read More
Prerequisite: XOR Linked List An ordinary Doubly Linked List requires space for two address fields to store the addresses of previous and next nodes. A… Read More
In this article, we will create a slideshow application i.e we can see the next image without changing it manually or by clicking.  Modules Required:Tkinter:… Read More
Floyd’s triangle is a triangle with first natural numbers. It is the right arrangement of the numbers/values or patterns. Basically, it is a left to… Read More
In order to compute the area of the triangle, two parameters are needed namely base and height. For this simply the variables are assigned with… Read More
Java program to generate N number of passwords each of length M. The number of passwords returned doesn’t exceed the length M. Example: Input :… Read More
Given a binary matrix, mat[][] of dimensions N * M, the task is to maximize the count of rows consisting only of equal elements by… Read More
The process of creating and embedding scripts in a web page is known as web-scripting. A script or a computer-script is a list of commands… Read More
Given two polynomials P1 and P2 in the form of a singly linked list respectively, the task is to print the quotient and remainder expressions… Read More
In the Byteland country, a string S is said to super ASCII string if and only if the count of each character in the string… Read More
Given two positive integers P and Q, the task is to largest divisor of P which is not divisible by Q. Examples: Input: P =… Read More
Given an integer matrix mat[][] of dimensions N * M,  the task is to print the maximum product of matrix elements in the path from… Read More
Given two strings A and B of length N and M respectively, the task is to find the minimum cost to convert string A to… Read More
Pointers store the address of variables or a memory location. Pointers are a symbolic representation of addresses. They enable programs to simulate call-by-reference as well… Read More