The Wayback Machine - https://web.archive.org/web/20210109131114/https://www.geeksforgeeks.org/medium
All Medium Articles
Given an array arr[] consisting of N integers whose absolute values are distinct and an integer K, the task is to find such an arrangement… Read More
Given an array arr[] of size N, where arr[i] is the time required to visit ith city, the task is to find the minimum total… Read More
In this article, we will discuss the Dynamic initialization of objects using Dynamic Constructors. Dynamic initialization of object refers to initializing the objects at a… Read More
In this article, we will discuss the use of a digit separator in C++. Sometimes, it becomes difficult to read numbers that contain many digits.… Read More
The Fetch API provides a JavaScript interface that enables users to manipulate and access parts of the HTTP pipeline such as responses and requests.  Fetch… Read More
Given a list of elements and the task is to sort them alphabetically and put each element in the list with the help of JavaScript.… Read More
Given two integers N and K, the task is to rotate the digits of N by K. If K is a positive integer, left rotate… Read More
Given a positive integer N, the task is to rearrange the digits of the given integer such that the integer becomes a power of 2.… Read More
Tic-tac-toe (American English), noughts and crosses (British English), or Xs and Os is a paper-and-pencil game for two players, X and O, who take turns… Read More
Contrary to popular belief, the Windows operating system is not any less in regard to performance compared to its contemporary like macOS and Linux. In… Read More
Given a string str, the task is to count non-empty substrings with equal number of ‘a’, ‘b’, ‘c’, and ‘d’. Examples: Input: str = “abcdef” Output:… Read More
IP Address: An Internet Protocol address is a numerical label assigned to each device connected to a computer network that uses the Internet Protocol for… Read More
ArrayList is a part of the collection framework and is present in java.util package. It provides us with dynamic arrays in Java just as Vector… Read More
A zip file is a file where one or more files are compressed together, generally, zip files are ideal for storing large files.  Here the… Read More
Information Security alludes to the cycles and procedures which are planned and executed to ensure print, electronic, or some other type of secret, private and… Read More
Linux offers a wide range of commands for text formatting and editing. While editing a text file, you might want to display the lines with… Read More
Given a string str, consisting of three different types of characters ‘0’, ‘1’ and ‘?’, the task is to convert the given string to a… Read More
The Django’s built-in authentication system is great. For the most part we can use it out-of-the-box, saving a lot of development and testing effort. It… Read More
Given a 2D matrix mat[][] of size N * M, the task is to find the median of Bitwise XOR of all possible submatrices from… Read More
Given an integer N, the task is to find the value of the expression ( N1 * (N – 1)2 * … * 1N) %… Read More