All Medium Articles
Given a starting position ‘k’ and two jump sizes ‘d1’ and ‘d2’, our task is to find the minimum number of jumps needed to reach… Read More
The SASS is the abbreviation of Syntactically Awesome Style Sheets. It is a CSS pre-processor with syntax advancements. The style sheets in the advanced syntax… Read More
In the previous article, we have discussed some basic techniques to analyze the data, now let’s see the visual techniques. Let’s see the basic techniques… Read More
Given a complete binary tree, traverse it such that all the boundary nodes are visited in Anti-Clockwise order starting from the root. Example:  Input: 18… Read More
aptitude command in Linux package system opens up a highly built-in interface to interact with the package manager of the machine. It is the control… Read More
Given an integer X and a square matrix mat[][], the task is to remove the first X rows and columns from the given matrix and… Read More
C++
For a given differential equation with initial condition find the approximate solution using Predictor-Corrector method.Predictor-Corrector Method : The predictor-corrector method is also known as Modified-Euler method. In the Euler… Read More
Pig Represents Big Data as data flows. Pig is a high-level platform or tool which is used to process the large datasets. It provides a… Read More
Given student’s records with each record containing id, name and age of a student. Write a C program to read these records and display them… Read More
Variability: It is the import dimension that measures the data variation i.e. whether the data is spread out or tightly clustered. Also known as Dispersion… Read More
Long Short-Term Memory is an improved version of recurrent neural network designed by Hochreiter & Schmidhuber. LSTM is well-suited for sequence prediction tasks and excels… Read More
To many readers, this might sound the same thing, i.e.   class_type *var = NULL; *var = &some_work; is same as class_type *var = &some_work; But… Read More
A variation of rat in a maze. You are given an N * N 2-D matrix shaped maze (let’s call it M), there is a rat… Read More
Given LinkedList, replace each node’s value with its surpasser count. That is the count of elements which are greater towards its right. Examples:  Input :… Read More
Given a Binary Tree. The task is to print the circular clockwise spiral order traversal of the given binary tree.   For the above binary tree,… Read More
Qualification : currently pursuing B.E. Electrical and Electronics Engineering.Round 1: After general introduction, the interviewer asked me if I was good with arrays. I said… Read More
In this article, we will learn how to expose ML/DL model as flask APIs. Frameworks we’ll be using: Keras is a Deep Learning library, built… Read More
The border-bottom-style property in CSS is used to set the style of the bottom border of an element.  Syntax:  border-bottom-style: none|hidden|dotted|dashed| solid|double|groove|ridge|inset| outset|initial|inherit; Property Values: … Read More
hwclock also called Real Time Clock (RTC), is a utility for accessing the hardware clock. The hardware clock is independent of the OS(operating system) you… Read More
Given an array of N numbers, the task is to count the number of subsequences that have gcd equal to 1.  Examples:  Input: a[] =… Read More