All Medium Articles
In PostgreSQL, the CTE(Common Table Expression) is used as a temporary result set that the user can reference within another SQL statement like SELECT, INSERT,… Read More
PostgreSQL provides the WITH statement that supports the designing of auxiliary queries also known as CTEs (Common Table Expressions). A recursive query is a query… Read More
Twitter is a popular social network where users share messages called tweets. Twitter allows us to mine the data of any user using Twitter API… Read More
Given an array arr[]and an integer K, the task is to find the sum of all K length subsequences from the given array. Example:  Input:… Read More
It is a free open standard cloud computing platform that first came into existence on July 21′ 2010. It was a joint project of Rackspace… Read More
The problem statement asks us to find the minimum number of group flips required to convert a given binary array into an array that either… Read More
Given a binary tree having N nodes and weight of N-1 edges. The distance between two nodes is the sum of the weight of edges… Read More
In the article, we have already discussed the KMP algorithm for pattern searching. In this article, a real-time optimized KMP algorithm is discussed. From the… Read More
Given an array arr[] consisting of N elements and Q queries represented by L, R, and K. The task is to print the count of… Read More
Given a string S, the task is to find the permutation of the string such that palindromic substrings in the string are maximum.Note: There can… Read More
Given a numeric string target of length N and a set of numeric strings blocked, each of length N, the task is to find the… Read More
Given an integer N denoting the number of dices, the task is to find the probability of every possible value that can be obtained by… Read More
Given a number N, the task is to find the count of non-prime divisors of the given number N. Examples:  Input: N = 8 Output: 3 Explanation: Divisors… Read More
Given a string S of lowercase English alphabets, the task is to check if there exists an arrangement of string S such that it doesn’t… Read More
Priority Queue: Priority queue is the extension of the queue in which elements associated with priority and elements having higher priority is popped first. Priority… Read More
This introductory article talks about the things a software developer must keep in mind while developing any software. It also talks about what are some… Read More
Given an integer N, the task is to count every number i from 1 to N (both inclusive) such that i is a binary representation… Read More
I’m sure you all use voice assistants like Alexa, Siri, etc. Suppose you ask Alexa what is the weather today? Alexa will handle your request… Read More
Given a Doubly linked list and Circular singly linked list containing N nodes, the task is to remove all the nodes from each list which… Read More
The Base64 encoding is used to convert bytes that have binary or text data into ASCII characters. Encoding prevents the data from getting corrupted when… Read More