All Medium Articles
I recently interviewed for Myntra in Feb 2021. The whole process was conducted virtually. Here are the details of rounds: Round 1(Problem Solving):  This was… Read More
There are two best and easiest ways to Configure emacs for editing HTML Files that contain JavaScript. Using multi-web-mode Using web-mode-el Both of these methods… Read More
If you are working with a Machine Learning project, the greatest bottleneck could be the lack of computational resources. With Google Colaboratory (Google Colab or… Read More
This article is written on CPP installation for the latest  MacBook M1 processor. It’s not like we can’t do CPP programming in the latest MacBook,… Read More
A friend class can access private and protected members of other classes in which it is declared as friend. It is sometimes useful to allow… Read More
Feature Selection is the most critical pre-processing activity in any machine learning process. It intends to select a subset of attributes or features that makes… Read More
Coding down the whole algorithm from scratch during the online contest can cost you plenty of time and may lead to a bad rank. There… Read More
A programming paradigm is an approach to solve problems using some programming language or also we can say it is a method to solve a… Read More
Vector is a module in Rust that provides the container space to store values. It is a contiguous resizable array type, with heap-allocated contents. It… Read More
Neural Networks are a biologically-inspired programming paradigm that deep learning is built around. Python provides various libraries using which you can create and train neural… Read More
Given a 2d array arr[][] with each row representing a pair representing entry and exit time of a car in a parking lot, the task… Read More
Given an integer K, and two arrays X[] and Y[] both consisting of N integers, where (X[i], Y[i]) is a coordinate in a plane, the… Read More
Given two sorted strings S1 and S2 of lengths N and M respectively, the task is to construct lexicographically the smallest string possible by merging… Read More
The UnsupportedOperationException is one of the common exceptions that occur when we are working with some API of list implementation. It is thrown to indicate… Read More
Given an array arr[] consisting of N integers, the task is to replace a minimum number of pairs of adjacent elements by their sum to… Read More
Given an array arr[] of size N, the task is to count the number of subarrays from the given array whose Bitwise XOR  is even.… Read More
Firebase Realtime Database is the backend service which is provided by Google for handling backend tasks for your Android apps, IOS apps as well as… Read More
Reference to an array means aliasing an array while retaining its identity. Reference to an array will not be an int* but an int[]. Let… Read More
When we are creating an android app then instead of inserting a pdf manually we want to fetch the pdf using the internet from firebase.… Read More