Published inNerd For TechUnderstand Java Variables : From Primitives to ReferencesJava is a strongly typed language, meaning each variable must have a specific type, and only values of that type can be assigned to it. In…May 30, 2024May 30, 2024
Published inNerd For TechTrapping Rain Water — Leetcode 42 [Hard]Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after…May 28, 2024May 28, 2024
Published inNerd For TechGetting Started with Java for PythonistasJava is object oriented, widely used in the programming world. The following guide aims to help people already familiar with programming…May 27, 2024May 27, 2024
Published inNerd For TechGetting started with Angular FrameworkIn this article I would like to introduce Angular framework to beginners who are just getting started. This article will serve only as an…Sep 15, 2021Sep 15, 2021
Published inNerd For TechFundamentals of AWS NetworkingImagine you are the owner of a coffee shop. You have a cashier who takes orders from customers and a barista who prepares the coffee. Now…Aug 1, 2021Aug 1, 2021
Published inNerd For TechTopological Sorting for InterviewsTopological sorting is the ordering of vertices in a graph such that for a directed edge (u,v) (from vertex “u” to vertex “v”), the…Jul 20, 2021Jul 20, 2021
Published inNerd For TechFoundations of data systems — Part 1- A summaryThis is my summary of the first chapter in the book, “Designing Data intensive Applications”Jul 1, 2021Jul 1, 2021
Published inNerd For TechQuick Select AlgorithmQuick Select is a variation of the quicksort algorithm. It is an optimized way to find the kth smallest/largest element in an unsorted…Jun 30, 20212Jun 30, 20212
Published inNerd For TechBinary Search Problem : Search a 2D Matrix II [Leetcode 240]This problem is similar to “Search a 2D matrix”, the solution to which I have written in my previous article. If you have read the…Jun 26, 2021Jun 26, 2021
Published inNerd For TechBinary Search Problems- Search a 2D Matrix [Leetcode — 74]Link to the problem:Jun 26, 20211Jun 26, 20211