All Medium Articles
Round 1: Implement Find command in Linux. Asked to review a piece of code that was already written. Some behavioral questions Round 2: Assembly Line… Read More
Given an integer array ‘arr’ of length N and an integer ‘k’, select some non-overlapping subarrays such that each sub-array if of length at most… Read More
Given two Binary Search Trees(BST), print the elements of both BSTs in sorted form. Note: Both the BSTs will not have any common element. Examples:  Input… Read More
Prerequisite: Data preprocessing Why Data Reduction ? Data reduction process reduces the size of data and makes it suitable and feasible for analysis. In the… Read More
Given two arrays a1[] and a2[], print elements of a1 in such a way that the relative order among the elements will be the same… Read More
K-Nearest Neighbors is one of the most basic yet essential classification algorithms in Machine Learning. It belongs to the supervised learning domain and finds intense… Read More
Given a string str and an integer K, the task is to find the length of the longest sub-string S’ such that every character in… Read More
Dempster-Shafer Theory was given by Arthur P. Dempster in 1967 and his student Glenn Shafer in 1976. This theory was released because of the following reason:- … Read More
Scrum is the type of Agile framework. It is a framework within which people can address complex adaptive problem while productivity and creativity of delivering… Read More
Prerequisites: Agglomerative Clustering Agglomerative Clustering is one of the most common hierarchical clustering techniques. Dataset – Credit Card Dataset. Assumption: The clustering technique assumes that… Read More
Given a string str, the task is to answer Q queries where every query consists of two integers L and R and we have to… Read More
1. Downloading, Installing, and Starting Python SciPy Get the Python and SciPy platform installed on your system if it is not already. One can easily… Read More
Volume Testing: Volume Testing is a type of software testing that is performed to test the performance or behavior of the system or application under… Read More
Pulse Code Modulation (PCM): PCM is the technique used for remodeling analog signal into digital signal. Pulse Code Modulation has good signal to noise ratio. For… Read More
Prerequisite: Linear Regression In Simple Linear Regression or Multiple Linear Regression we make some basic assumptions on the error term . Simple Linear Regression: (1)… Read More
In Kotlin, the higher-order functions or lambda expressions, all stored as an object so memory allocation, for both function objects and classes, and virtual calls… Read More
Consider a sorted array of n numbers and a number x. What would be the time complexity of the best known algorithm to find a… Read More
Round 1: (Technical) – Given a building as a 2D matrix with three possible values at each cell: P for Person, W for Wall and… Read More
Dataset : It is given by Kaggle from UCI Machine Learning Repository, in one of its challenge https://www.kaggle.com/uciml/breast-cancer-wisconsin-data. It is a dataset of Breast Cancer patients with… Read More
Given an array of N elements. Find the subset of elements which has maximum sum such that no two elements in the subset has common… Read More