All Medium Articles
Given an array arr[] of length N with unique elements, the task is to find the length of the longest increasing subsequence that can be… Read More
Given an integer N. The task is to generate a square matrix of ( n x n ) having the elements ranging from 1 to… Read More
Given a very large number N in the form of a string and a number K, the task is to print all the K-digit repeating… Read More
A decorator is a design pattern tool in Python for wrapping code around functions or classes (defined blocks). This design pattern allows a programmer to… Read More
3D plots are very important tools for visualizing data that have three dimensions such as data that have two dependent and one independent variable. By… Read More
Given a binary string S, and a substring K, the task is to find the minimum no of steps required to flip the characters in… Read More
Given an integer array arr[] of size N and an integer X, the task is to count the number of subsequences in that array such… Read More
Given N teams and the results of round-robin tournament in which no match resulted is draw or tie. The task is to find the order… Read More
Given a matrix mat[][], the task is to check if the row-major order path of the matrix is a palindrome or not. Examples:  Input: mat[][]… Read More
Introduced in Java 8, the Stream API is used to process collections of objects. A stream is a sequence of objects that supports various methods… Read More
The world has changed into a mobile-first era but even today, none of the applications could emerge as effective as the web-based apps. Surfacing on… Read More
Prerequisite: graphics.h, How to include graphics.h in CodeBlocks? In Computer Graphics, we use graphics.h which provide direct functions to draw different coordinate shapes(like circle, rectangle… Read More
Given an array arr[] and an integer K, the task is to find the K elements of the array whose absolute difference with median of… Read More
Python List Python programming language has four collection data types namely List, Tuple, Set, and Dictionary . A list is a mutable and ordered collection… Read More
Text-fill animation on hover is a type of text-animation of modern web design concepts. In this animation, the text is filled with a color different… Read More
Adding text over images is a very common task in web development and developers have been doing it for a long time. Instead of using… Read More
IndexedDB is a key-value database in the browser. It is a NoSQL Database. It is transactional, i.e. if a particular action falls within a transaction,… Read More
Parsing means accessing the data submitted by user with HTML form. When the form is submitted with the ‘GET’ method, data are appended in ‘query… Read More
The conic-gradient() function is an inbuilt function in CSS that is used to set a conic gradient as the background image. The conic gradient angle… Read More
Given an array of integers arr[] and a positive integer K, the task is to find the count of the longest possible subarrays with sum… Read More