All Medium Articles
Given two values N and K. Find the number of ways to arrange the N distinct items in the boxes such that exactly K (K<N)… Read More
Given a string s of size N. The task is to find lexicographically all the shortest palindromic substrings from the given string. Examples: Input: s=… Read More
Fog Computing is the term coined by Cisco that refers to extending cloud computing to an edge of the enterprise’s network. Thus, it is also… Read More
Real-time System is a system that is put through real time which means response is obtained within a specified timing constraint or system meets the… Read More
1. Ring Topology: In Ring topology, there is a circular data path. Each of the devices is connected to two other devices in the network.… Read More
A character with a backslash (\) just before it is an escape sequence or escape character. We use escape characters to perform some specific task.… Read More
In this article, we will learn about how to setup all in one Competitive Programming Environment Operating System It is always recommended to use a… Read More
Given an integer N, the task is to print a number diamond of size N in rangoli style where N means till Nth number from… Read More
Extensible Markup Language, commonly known as XML is a language designed specifically to be easy to interpret by both humans and computers altogether. The language… Read More
In this article, we will learn how to add and work with a table in our PyQt5 application. A table is an arrangement of data… Read More
The speed of developing anything from text to applications has increased exponentially over the past 3 decades. If you wanted people to read your thoughts… Read More
Given a number N, the task is to print all distinct divisors of N2. Examples:  Input: N = 4 Output: 1 2 4 8 16 Explanation:N =… Read More
Given a big string and an array of small strings, all of which are smaller in length than the big string. The task is to… Read More
As a beginner, while starting learning something new everyone is having a question in mind, “How to get started?”. When I started learning Blockchain I… Read More
Background : In the old days, if people had to work on the hardware if they had to write the code at very low level.… Read More
During Feature Engineering the task of converting categorical features into numerical is called Encoding. There are various ways to handle categorical features like OneHotEncoding and… Read More
Given a set S with the initial element 0 that is S = { 0 }. The task is to perform each query when Q… Read More
In Dart, switch-case statements are a simplified version of the nested if-else statements. Its approach is the same as that in Java. Syntax: switch (… Read More
Given segments and some points, for each point find the number of segments covering that point. A segment (l, r) covers a point x if… Read More
Given the length N of the string, we have to find the number of special strings of length N. A string is called a special string… Read More