All Easy Articles
Given two numbers N and M. Construct maximal number by permuting (changing order) the digits of N, not exceeding M.  Note: It is allowed to… Read More
Simple Moving Average is the average obtained from the data for some t period of time . In normal mean, it’s value get changed with… Read More
Multiprogramming – Multiprogramming is known as keeping multiple programs in the main memory at the same time ready for execution. Multiprocessing – A computer using… Read More
Prerequisite: Sets in Python Given three arrays, we have to find common elements in three sorted lists using sets. Examples : Input : ar1 =… Read More
We call a decimal number strict monotone if: D[i-1] < D[i], 0 < i < |D|      Write a program which takes positive number… Read More
Databases offer numerous functionalities by which one can manage large amounts of information easily over the web, and high-volume data input and output over a… Read More
Given 2n counters where n > 1. You have to place these 2n counters on an n × n board so that no more than… Read More
Given the value of n, print the arrow pattern.Examples :   Input : n = 5 Output : * ** *** **** ***** **** *** **… Read More
In real world, not every data we work upon has a target variable. This kind of data cannot be analyzed using supervised learning algorithms. We… Read More
Prerequisite – Binary Tree Data Structure In this article, we will discuss various cases for relationship between number of nodes and height of binary tree. Before… Read More
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for… Read More
The difference_update() method helps in an in-place way of differentiating the set. The previously discussed set difference() helps to find out the difference between two… Read More
Standard C90 requires the elements of an initializer to appear in a fixed order, the same as the order of the elements in the array… Read More
Given a sorted integer array. We need to make array elements distinct by increasing values and keeping array sum minimum possible. We need to print… Read More
Given an Array of Positive and Negative Integers, find out the Maximum Subarray Sum in that Array. Examples:  Input1 : arr = {-2, -3, 4,… Read More
Python list remove() method removes a given element from the list. Example: Python3 lis = ['a', 'b', 'c']lis.remove("b")print(lis) Output['a', 'c'] List remove() Syntaxlist_name.remove(obj)  Parameterobj: object… Read More
Given two integer N or M find the number of zero’s trailing in product of factorials (N!*M!)? Examples:   Input : N = 4, M = 5… Read More
Given a array size of n, find the last k digits (1 <= k < 10) of product of array numbers  Examples:  Input : a[]… Read More
Given a room with square grids having ‘*’ and ‘.’ representing untidy and normal cells respectively. You need to find whether room can be cleaned… Read More
Given an array of positive integers of length n. Our task is to find minimum number of operations to convert an array so that arr[i]… Read More