All Medium Articles
Given an array arr[] of size N, the task is to find the number of permutations in the array that follows the given condition:   If… Read More
A lot of students ask questions about open source. What is open source, and how can I contribute to it? Is it helpful if I… Read More
Git
GIT patch or GIT diff is used to share the changes made by you to others without pushing it to main branch of the repository.… Read More
Factors in R Programming Language are data structures that are implemented to categorize the data or represent categorical data and store it on multiple levels. … Read More
DataFrames are generic data objects of R which are used to store the tabular data. Data frames are considered to be the most popular data… Read More
Given a string str which consists of only lowercase letters and an array arr[][] that represents range queries on the given string str where each… Read More
Given two positive consecutive numbers M and N, the task is to find the square difference of the two numbers without computing the square of… Read More
In share trading, a buyer buys shares and sells on a future date. Given the stock price of N days, the trader is allowed to… Read More
Given an array a containing positions of N houses, and an array b containing positions of M radio towers, each placed along a horizontal line,… Read More
Given a grid A of size N*M consisting of K cells denoted by values in range [1, K], some blocked cells denoted by -1 and… Read More
Given string str denoting a password, the task is to count the minimum characters that need to be added to make the password strong. A password… Read More
Given four co-ordinates A, B, C and D where towers need to be constructed, the task is to check if the tower of sight issue… Read More
Given an array arr[], the task is to count the pairs in the array such that the elements are the reverse of each other. Examples: … Read More
Given three integers N, A, B, the task is to find the remainder when the sum of integers which are divisible by either A or… Read More
Given an integer N, the task is to find the largest sum (a + b) {1 ? a ? N, 1 ? b ? N}… Read More
Product metrics are software product measures at any stage of their development, from requirements to established systems. Product metrics are related to software features only.… Read More
The lateral keyword represents a lateral join between two or more tables. It joins the output of the outer query with the production of the… Read More
The two back-end web frameworks i.e. Laravel, Django, and the run-time environment NodeJS helps in the development activities. All end up acquiring the same objective,… Read More
Destructuring assignment allows us to assign the properties of an array or object to a bunch of variables that are sometimes very convenient and short.… Read More
In angular2, a component is considered as a ‘view’ with its own logic and data. Data binding is the process of combining data values with… Read More