All Medium Articles
Given a string str, the task is to find the frequency of each character of a string using an unordered_map in C++ STL. Examples:  Input:… Read More
Sometimes, while working with Python strings, we can have problem in which we need to perform the replace of a word. This is quite common… Read More
On-page SEO and Off-page SEO are two essential components of search engine optimization, each focusing on different aspects to improve a website’s visibility on search… Read More
In this article we will see how we can make a PyQt5 application which will visualize the subset search algorithm.  Sub Set Search : Sometimes… Read More
Given a string. The task is to write a regular expression to check whether a string starts and ends with the same character. Examples:  Input… Read More
For large quotients, floor division (//) doesn’t seem to be necessarily equal to the floor of regular division (math.floor(a/b)) Examples: Input : 269792703866060742 // 3… Read More
Given two Binary Search Tree (BSTs) and a value X, the problem is to print all pairs from both the BSTs whose sum is greater… Read More
Write a program that checks whether a given Linked List contains a loop and if a loop is present then returns the count of nodes… Read More
Given string str of alphanumeric characters, the task is to check whether the string is a valid PAN (Permanent Account Number) Card number or not… Read More
Given two integers M and K, the task is to count the number of integers between [0, M] such that GCD of that integer with… Read More
Locators Strategies in Selenium Python are methods that are used to locate single or multiple elements from the page and perform operations on the same.… Read More
Given a string str, the task is to sort the string according to the frequency of each character, in ascending order. If two elements have… Read More
Functional Modelling: A functional model of a system specifies how the output values are computed in the system from the input values, without considering the… Read More
SMS stands for Short Message Service. It is basically a standardized communication protocol that is used for the exchange of text messages between mobile devices.… Read More
Given an undirected graph and a set of vertices, we have to print all the non-reachable nodes from the given head node using a breadth-first… Read More
Given a Binary Tree, the task is to print the count of nodes having both children and both of them are its prime factors. Examples:   Input:… Read More
LED stands for Light Emitting Diode LED is right now the most energy-efficient lighting technology available for use. The LED is a semiconductors light source. Mainly… Read More
Prerequisites: Python Programming LanguageThe package pynput.keyboard contains classes for controlling and monitoring the keyboard. pynput is the library of Python that can be used to… Read More
Given an array arr[] of N numbers. The task is to find the maximum GCD of all subarrays of size greater than 1. Examples:   Input: arr[]… Read More