All Medium Articles
Web Scraping refers to the process of scraping/extracting data from a website using the HTTP protocol or web browser. The process can either be manual… Read More
In this article, we are going to extract JSON from HTML using BeautifulSoup in Python. Module needed bs4: Beautiful Soup(bs4) is a Python library for… Read More
Geolocation refers to the identification of the geographical location of a user or computer device.  In this article, we will create a web page where… Read More
Math Module consists of mathematical functions and constants. It is a built-in module made for mathematical tasks. The math module provides the math functions to… Read More
Prerequisite: Introduction to OpenCV In this article, we are going to see how to calculate the distance with a webcam using OpenCV in Python. By… Read More
As we are well verse with this topic let us put more stress in order to figure out minute differences between them. Here we are… Read More
Given an enum containing a group of constants, the task is to convert the enum to a String. Methods: We can solve this problem using… Read More
INDEX-MATCH has become a more popular tool for Excel as it solves the limitation of the VLOOKUP function, and it is easier to use. INDEX-MATCH… Read More
Round 1: Machine Coding Round: Given 90 minutes of time  Design a mobile catalog I have to write three function like search by model name… Read More
Given two sorted arrays, X[] of size N and Y[] of size M having unique values. The task is to count the total number of… Read More
Given an array arr[] of size N, representing the diameter of N circular buildings and a straight wire of length L. The task is to… Read More
There are a number of time management utilities available on Linux such as timedatectl, date, etc by which you can view the current timezone in… Read More
What is a kernel ?The kernel is a computer program at the core of a computer’s operating system and has complete control over everything in… Read More
In this article, we are going to discuss the difference between routine and process. Before differentiating between both, first, let us understand what they are.… Read More
API which stands for Application Programming interface is an interface between different software so that they can interact with each other very smoothly. API is… Read More
Given two arrays A[] and B[], both consisting of N positive integers, the task is to find the maximum score among all possible same-indexed subarrays… Read More
Given a matrix mat[][] of dimensions N * M and a set of coordinates of cell coordinates[][] of size Q, the task is to find… Read More
Given an integer N, repeatedly choose two distinct integers from the range 2 to N and if their GCD is found to be greater than… Read More
Given two positive integers, N and M, and an array arr[ ] consisting of (N + M) integers such that the first N elements are… Read More
Given a lower triangular matrix Mat[][], the task is to store the matrix using column-major mapping. Lower Triangular Matrix: A Lower Triangular Matrix is a… Read More