All Medium Articles
Variadic functions are functions that can take a variable number of arguments. In C programming, a variadic function adds flexibility to the program. It takes… Read More
So you have decided to become a Data Scientist! But what’s next? It’s very easy to obtain lots of information online about how to become… Read More
E-waste: E-waste or Electronic waste refers to electronic products that are not working, are unwanted, near the end of their life span. Examples of E-waste… Read More
File transfer protocol (FTP) is an Internet tool provided by TCP/IP. The first feature of FTP is developed by Abhay Bhushan in 1971. It helps… Read More
The Thread class contains constructors and methods for creating and operating on threads. Thread is a subclass of Object that implements the Runnable interface. There… Read More
Proof-of-Capacity mining is a very new mining method that is presently being employed by one cryptocurrency, Burstcoin. Despite this, many people believe that proof of… Read More
AVL Trees are self-balancing Binary Search Trees where the difference between heights of left and right subtrees cannot be more than one for all nodes.… Read More
In the analysis of algorithms, asymptotic notations are used to evaluate the performance of an algorithm, in its best cases and worst cases. This article… Read More
In mathematics, asymptotic analysis, also known as asymptotics, is a method of describing the limiting behavior of a function. In computing, asymptotic analysis of an… Read More
Planar Graph :If a graph can be drawn on the plane without crossing, it is said to be planar.Coloring of a simple graph is the… Read More
When an external force acts to do work, moving a body from a point to another against a force like spring force or gravitational force,… Read More
Given an integer N and an array arr[ ] of size N, the task is to find the maximum jumps to reach the end of… Read More
Given an array arr[] of size N, the task is to find the minimum subarray sum in the subarrays [i, N-1] for all i in… Read More
Given an array arr[] of size N, the task is to count the number of subarrays having an average exactly equal to k. Examples: Input:… Read More
Given an array arr[](1-based indexing) consisting of N positive integers and two positive integers L and R,  the task is to find the sum of… Read More
Given a positive integer N, the task is to find the number of N-digit numbers such that at least one digit in the number has… Read More
Given a positive integer K, and an array arr[] consisting of N( =9) integers such that arr[i] represents the cost of the digit (i+1), the… Read More
Given a binary string S of size N, and a 2D array Q[][] of queries consisting of M pairs of the form {L, R}, the… Read More
Given an integer N, the task is to print all possible Full Binary Trees with N nodes. The value at the nodes does not contribute… Read More
Syntax highlighting is the work of code editors such as Sublime Text, Visual Studio, Dev CPP, etc, which highlights all the different parts of the… Read More